diff options
author | Matěj Cepl <mcepl@redhat.com> | 2014-06-02 15:44:14 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2014-06-02 15:48:28 +0200 |
commit | 23c3d60f4d2b5416db9334706cddf3b3617d3509 (patch) | |
tree | ed0623f6b60f647f7dfad3892dfea82d609ea791 /test/test_reader.py | |
parent | 735015800cecf9ccd0f4ac52a4e83591d6d94a5d (diff) | |
download | yamlish-23c3d60f4d2b5416db9334706cddf3b3617d3509.tar.gz |
Perhaps we don't need unittest2 after all
Bump the release as well.
Diffstat (limited to 'test/test_reader.py')
-rw-r--r-- | test/test_reader.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/test_reader.py b/test/test_reader.py index a34104c..166fc8f 100644 --- a/test/test_reader.py +++ b/test/test_reader.py @@ -3,10 +3,7 @@ from __future__ import absolute_import, print_function, unicode_literals import yaml import yamlish import test -try: - import unittest2 as unittest -except ImportError: - import unittest +import unittest test_data_list = [ { @@ -365,6 +362,7 @@ test_data_list = [ }, ] + class TestReader(unittest.TestCase): # IGNORE:C0111 pass |