]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commit
Eliminate OrderedDict from test_api_v2.py
authorKevin L. Mitchell <kevin.mitchell@rackspace.com>
Mon, 22 Sep 2014 17:18:11 +0000 (12:18 -0500)
committerKevin L. Mitchell <kevin.mitchell@rackspace.com>
Mon, 22 Sep 2014 17:18:11 +0000 (12:18 -0500)
commitc756d3c3ca9e90fab5e1d3ff37af33972747ba70
treeef87b238cafd5ea73df3920fd6c679b7c745b742
parent9d5bd529cd21a73a6697992e708d712801c78e39
Eliminate OrderedDict from test_api_v2.py

Neutron cannot possibly be passing tests under Python 2.6, as
neutron/tests/unit/test_api_v2.py is referencing
collections.OrderedDict, which does not exist in Python 2.6.
Since there is no reason to use an OrderedDict in this case,
this replaces it with a simple dict.

Change-Id: I1b9886f508c4c8b96cf50c50f157c1960da433fc
Closes-Bug: #1372571
neutron/tests/unit/test_api_v2.py