From 23c3d60f4d2b5416db9334706cddf3b3617d3509 Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Mon, 2 Jun 2014 15:44:14 +0200 Subject: Perhaps we don't need unittest2 after all Bump the release as well. --- test/test_reader.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'test/test_reader.py') 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 -- cgit