aboutsummaryrefslogtreecommitdiffstats
path: root/tests/files_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/files_test.py')
-rw-r--r--tests/files_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/files_test.py b/tests/files_test.py
index 63c4fa6..dc799bc 100644
--- a/tests/files_test.py
+++ b/tests/files_test.py
@@ -4,7 +4,7 @@
from __future__ import with_statement
-import unittest2
+from unittest import TestCase
import tempfile
import os
import os.path
@@ -36,7 +36,7 @@ def clean_string(s):
return spaces_re.sub(' ', line_break_re.sub('\n', s))
-class FileTests(unittest2.TestCase):
+class FileTests(TestCase):
"""High level tests that runs Screenplain using command line arguments.
"""