From 6f1eb773befe81a22bb9e2d4da87cd1da598f96e Mon Sep 17 00:00:00 2001 From: Mark Washenberger Date: Tue, 28 Feb 2012 10:08:44 -0500 Subject: Use assertDictMatch to keep 2.6 unit tests passing Change-Id: I5cdcbeec8bd36250e6d6dff34b2bbbd12f10d280 --- nova/tests/api/openstack/compute/contrib/test_cloudpipe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nova/tests/api/openstack/compute/contrib/test_cloudpipe.py b/nova/tests/api/openstack/compute/contrib/test_cloudpipe.py index ca9b91992..a2323d909 100644 --- a/nova/tests/api/openstack/compute/contrib/test_cloudpipe.py +++ b/nova/tests/api/openstack/compute/contrib/test_cloudpipe.py @@ -106,7 +106,7 @@ class CloudpipeTest(test.TestCase): 'state': 'running', 'instance_id': 7777, 'created_at': '1981-10-20T00:00:00Z'}]} - self.assertDictEqual(res_dict, response) + self.assertDictMatch(res_dict, response) def test_cloudpipe_create(self): def launch_vpn_instance(context): -- cgit