summaryrefslogtreecommitdiff
path: root/test/test_package.py
diff options
context:
space:
mode:
authorBruno ReniƩ <brutasse@gmail.com>2014-08-28 14:40:01 +0200
committerMark Roberts <wizzat@fb.com>2014-09-03 09:55:44 -0700
commit83af5102e995e854a1980b90f1400afdd098da37 (patch)
tree403e6dabbe62ac4f5bb6b2a76a5eed0f183d86b3 /test/test_package.py
parenteddd1436c226545237aa057c35719950702466ed (diff)
downloadkafka-python-83af5102e995e854a1980b90f1400afdd098da37.tar.gz
Use base unittest or unittest2 depending on python version
Diffstat (limited to 'test/test_package.py')
-rw-r--r--test/test_package.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_package.py b/test/test_package.py
index a6a3a14..9b69a7c 100644
--- a/test/test_package.py
+++ b/test/test_package.py
@@ -1,6 +1,6 @@
-import unittest2
+from . import unittest
-class TestPackage(unittest2.TestCase):
+class TestPackage(unittest.TestCase):
def test_top_level_namespace(self):
import kafka as kafka1
self.assertEquals(kafka1.KafkaClient.__name__, "KafkaClient")