summaryrefslogtreecommitdiffstats
path: root/tests/unit/test_importutils.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/test_importutils.py')
-rw-r--r--tests/unit/test_importutils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/test_importutils.py b/tests/unit/test_importutils.py
index c41f13b..4c9ff73 100644
--- a/tests/unit/test_importutils.py
+++ b/tests/unit/test_importutils.py
@@ -65,7 +65,7 @@ class ImportUtilsTest(unittest.TestCase):
def test_import_object_ns_optional_arg_present(self):
obj = importutils.import_object_ns('tests.unit', 'fake.FakeDriver',
- first_arg=False)
+ first_arg=False)
self.assertTrue(obj.__class__.__name__, 'FakeDriver')
def test_import_object_ns_required_arg_not_present(self):
@@ -75,7 +75,7 @@ class ImportUtilsTest(unittest.TestCase):
def test_import_object_ns_required_arg_present(self):
obj = importutils.import_object_ns('tests.unit', 'fake.FakeDriver2',
- first_arg=False)
+ first_arg=False)
self.assertTrue(obj.__class__.__name__, 'FakeDriver2')
# namespace tests