Skip to content

Commit 1e916a1

Browse files
committed
Test UID validity
1 parent add9786 commit 1e916a1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/integration_test.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1626,4 +1626,7 @@ def test_649(self):
16261626
self.client.stop(ctnr)
16271627

16281628
def test_715(self):
1629-
self.client.create_container('busybox', 'true', user=1000)
1629+
ctnr = self.client.create_container('busybox', ['id', '-u'], user=1000)
1630+
self.client.start(ctnr)
1631+
self.client.wait(ctnr)
1632+
assert self.client.logs(ctnr) == '1000\n'

0 commit comments

Comments
 (0)