summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin L. Mitchell <kevin.mitchell@rackspace.com>2014-09-22 12:18:11 -0500
committerKevin L. Mitchell <kevin.mitchell@rackspace.com>2014-09-22 12:18:11 -0500
commitc756d3c3ca9e90fab5e1d3ff37af33972747ba70 (patch)
treeef87b238cafd5ea73df3920fd6c679b7c745b742
parent9d5bd529cd21a73a6697992e708d712801c78e39 (diff)
downloadneutron-c756d3c3ca9e90fab5e1d3ff37af33972747ba70.tar.gz
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
-rw-r--r--neutron/tests/unit/test_api_v2.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/neutron/tests/unit/test_api_v2.py b/neutron/tests/unit/test_api_v2.py
index e2ee2aacb4..842ec9cf80 100644
--- a/neutron/tests/unit/test_api_v2.py
+++ b/neutron/tests/unit/test_api_v2.py
@@ -13,7 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
-import collections
import os
import mock
@@ -145,7 +144,7 @@ class APIv2TestCase(APIv2TestBase):
def _get_collection_kwargs(self, skipargs=[], **kwargs):
args_list = ['filters', 'fields', 'sorts', 'limit', 'marker',
'page_reverse']
- args_dict = collections.OrderedDict(
+ args_dict = dict(
(arg, mock.ANY) for arg in set(args_list) - set(skipargs))
args_dict.update(kwargs)
return args_dict