summaryrefslogtreecommitdiff
path: root/tests/unit/client_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/client_test.py')
-rw-r--r--tests/unit/client_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/client_test.py b/tests/unit/client_test.py
index 0a56b04..aff6973 100644
--- a/tests/unit/client_test.py
+++ b/tests/unit/client_test.py
@@ -50,13 +50,13 @@ class ClientTest(unittest.TestCase):
with self.assertRaises(AttributeError) as cm:
client.create_container()
s = str(cm.exception)
- assert "'Client' object has no attribute 'create_container'" in s
+ assert "'DockerClient' object has no attribute 'create_container'" in s
assert "this method is now on the object APIClient" in s
with self.assertRaises(AttributeError) as cm:
client.abcdef()
s = str(cm.exception)
- assert "'Client' object has no attribute 'abcdef'" in s
+ assert "'DockerClient' object has no attribute 'abcdef'" in s
assert "this method is now on the object APIClient" not in s