From cbdeff99eee53f592bcafb2492fe171822cda583 Mon Sep 17 00:00:00 2001 From: Ben Firshman Date: Tue, 28 Jan 2014 13:45:47 +0000 Subject: [PATCH] Fix broken test on Python 3 --- tests/service_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/service_test.py b/tests/service_test.py index 1357b7613..66ed8ea53 100644 --- a/tests/service_test.py +++ b/tests/service_test.py @@ -185,13 +185,13 @@ class ServiceTest(DockerClientTestCase): def test_start_container_creates_ports(self): service = self.create_service('web', ports=[8000]) container = service.start_container().inspect() - self.assertEqual(container['HostConfig']['PortBindings'].keys(), ['8000/tcp']) + self.assertEqual(list(container['HostConfig']['PortBindings'].keys()), ['8000/tcp']) self.assertNotEqual(container['HostConfig']['PortBindings']['8000/tcp'][0]['HostPort'], '8000') def test_start_container_creates_port_with_explicit_protocol(self): service = self.create_service('web', ports=['8000/udp']) container = service.start_container().inspect() - self.assertEqual(container['HostConfig']['PortBindings'].keys(), ['8000/udp']) + self.assertEqual(list(container['HostConfig']['PortBindings'].keys()), ['8000/udp']) def test_start_container_creates_fixed_external_ports(self): service = self.create_service('web', ports=['8000:8000'])