diff options
author | Martin Vilcans <martin@librador.com> | 2013-08-13 18:34:19 +0200 |
---|---|---|
committer | Martin Vilcans <martin@librador.com> | 2013-08-13 18:34:19 +0200 |
commit | 121dd5374458b38b2ab2a7e2acf30f5256a8d251 (patch) | |
tree | acf3e33955bbfe90ed2d3f33b73791e76d901cad /tests/fdx_test.py | |
parent | bc51cf3d658cfe00ce5b154f51d750283bea6a6e (diff) | |
download | screenplain-121dd5374458b38b2ab2a7e2acf30f5256a8d251.tar.gz |
Removed dependency on unittest2
I think I don't use its features and it doesn't exist under that name in Python 3.
Diffstat (limited to 'tests/fdx_test.py')
-rw-r--r-- | tests/fdx_test.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/fdx_test.py b/tests/fdx_test.py index 1aceb3a..8034f71 100644 --- a/tests/fdx_test.py +++ b/tests/fdx_test.py @@ -2,14 +2,14 @@ # Licensed under the MIT license: # http://www.opensource.org/licenses/mit-license.php -import unittest2 +from unittest import TestCase from StringIO import StringIO from screenplain.export.fdx import write_text from screenplain.richstring import plain, bold, italic -class OutputTests(unittest2.TestCase): +class OutputTests(TestCase): def setUp(self): self.out = StringIO() |