diff options
Diffstat (limited to 'tests/integration_test.py')
-rw-r--r-- | tests/integration_test.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/integration_test.py b/tests/integration_test.py index 6d44d07..adbff84 100644 --- a/tests/integration_test.py +++ b/tests/integration_test.py @@ -1626,4 +1626,7 @@ class TestRegressions(BaseTestCase): ctnr = self.client.create_container('busybox', ['id', '-u'], user=1000) self.client.start(ctnr) self.client.wait(ctnr) - assert self.client.logs(ctnr) == '1000\n' + logs = self.client.logs(ctnr) + if six.PY3: + logs = logs.decode('utf-8') + assert logs == '1000\n' |