diff --git a/tests/integration_test.py b/tests/integration_test.py index a5a25e58ef..a715ef6edc 100644 --- a/tests/integration_test.py +++ b/tests/integration_test.py @@ -1762,7 +1762,7 @@ def test_792_explicit_port_protocol(self): tcp_port, udp_port = random.sample(range(9999, 32000), 2) ctnr = self.client.create_container( - BUSYBOX, 'true', ports=[2000, (2000, 'udp')], + BUSYBOX, ['sleep', '9999'], ports=[2000, (2000, 'udp')], host_config=self.client.create_host_config( port_bindings={'2000/tcp': tcp_port, '2000/udp': udp_port} )