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 db4d131..4fb2b8f 100644 --- a/tests/integration_test.py +++ b/tests/integration_test.py @@ -1626,4 +1626,7 @@ class TestRegressions(BaseTestCase): self.client.stop(ctnr) def test_715(self): - self.client.create_container('busybox', 'true', user=1000) + 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' |