summaryrefslogtreecommitdiff
path: root/openstack_dashboard/dashboards/project/instances/tests.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2015-09-09 03:33:27 +0000
committerGerrit Code Review <review@openstack.org>2015-09-09 03:33:27 +0000
commitdee5c9d3f48b0a092ddf065f360518c2a6015861 (patch)
tree9e30ca3d0c671141c0d48593620bf2edb174bf21 /openstack_dashboard/dashboards/project/instances/tests.py
parent2aa3cc95286424718d8988a9aa51215c13917bd7 (diff)
parent4e8549ee9a21ea8a2f44c8607b0abaf1a63f66a3 (diff)
downloadhorizon-dee5c9d3f48b0a092ddf065f360518c2a6015861.tar.gz
Merge "Replace SortedDict with OrderedDict"
Diffstat (limited to 'openstack_dashboard/dashboards/project/instances/tests.py')
-rw-r--r--openstack_dashboard/dashboards/project/instances/tests.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/openstack_dashboard/dashboards/project/instances/tests.py b/openstack_dashboard/dashboards/project/instances/tests.py
index 489f496df..9ace9dca4 100644
--- a/openstack_dashboard/dashboards/project/instances/tests.py
+++ b/openstack_dashboard/dashboards/project/instances/tests.py
@@ -16,6 +16,7 @@
# License for the specific language governing permissions and limitations
# under the License.
+from collections import OrderedDict
import json
import logging
import sys
@@ -27,7 +28,6 @@ from django.core.urlresolvers import reverse
from django.forms import widgets
from django import http
import django.test
-from django.utils.datastructures import SortedDict
from django.utils import encoding
from django.utils.http import urlencode
from mox3.mox import IgnoreArg # noqa
@@ -133,7 +133,7 @@ class InstanceTests(helpers.TestCase):
def test_index_flavor_list_exception(self):
servers = self.servers.list()
flavors = self.flavors.list()
- full_flavors = SortedDict([(f.id, f) for f in flavors])
+ full_flavors = OrderedDict([(f.id, f) for f in flavors])
search_opts = {'marker': None, 'paginate': True}
api.nova.extension_supported('AdminActions',
IsA(http.HttpRequest)) \
@@ -4166,7 +4166,7 @@ class InstanceAjaxTests(helpers.TestCase):
instance_id = server.id
flavor_id = server.flavor["id"]
flavors = self.flavors.list()
- full_flavors = SortedDict([(f.id, f) for f in flavors])
+ full_flavors = OrderedDict([(f.id, f) for f in flavors])
api.nova.extension_supported('AdminActions', IsA(http.HttpRequest))\
.MultipleTimes().AndReturn(True)
@@ -4197,7 +4197,7 @@ class InstanceAjaxTests(helpers.TestCase):
instance_id = server.id
flavor_id = server.flavor["id"]
flavors = self.flavors.list()
- full_flavors = SortedDict([(f.id, f) for f in flavors])
+ full_flavors = OrderedDict([(f.id, f) for f in flavors])
server.status = 'ERROR'
server.fault = {"message": "NoValidHost",
@@ -4275,7 +4275,7 @@ class ConsoleManagerTests(helpers.TestCase):
def setup_consoles(self):
# Need to refresh with mocks or will fail since mox do not detect
# the api_call() as mocked.
- console.CONSOLES = SortedDict([
+ console.CONSOLES = OrderedDict([
('VNC', api.nova.server_vnc_console),
('SPICE', api.nova.server_spice_console),
('RDP', api.nova.server_rdp_console),