diff options
| author | Mark Washenberger <mark.washenberger@rackspace.com> | 2012-02-28 10:08:44 -0500 |
|---|---|---|
| committer | Mark Washenberger <mark.washenberger@rackspace.com> | 2012-02-28 10:16:16 -0500 |
| commit | 6f1eb773befe81a22bb9e2d4da87cd1da598f96e (patch) | |
| tree | c5d4e799d589aca3a10c9f4aa57f1a631cfe45f9 | |
| parent | 2f8163bb28136698fb9f65bd003b4feb9dd08d4f (diff) | |
| download | nova-6f1eb773befe81a22bb9e2d4da87cd1da598f96e.tar.gz nova-6f1eb773befe81a22bb9e2d4da87cd1da598f96e.tar.xz nova-6f1eb773befe81a22bb9e2d4da87cd1da598f96e.zip | |
Use assertDictMatch to keep 2.6 unit tests passing
Change-Id: I5cdcbeec8bd36250e6d6dff34b2bbbd12f10d280
| -rw-r--r-- | nova/tests/api/openstack/compute/contrib/test_cloudpipe.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |
