summaryrefslogtreecommitdiff
path: root/openstack_dashboard/dashboards/admin/info
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2015-07-13 12:19:53 +0200
committerVictor Stinner <vstinner@redhat.com>2015-07-13 15:02:10 +0200
commit674a45ffe0fd5036ba40e297500a0cee7e8e613e (patch)
treee6586a09e8157f4ded0b5069404e809dfe2b82ea /openstack_dashboard/dashboards/admin/info
parenta336dbd7073c677aaa6a9af15e93ed5fd8896073 (diff)
downloadhorizon-674a45ffe0fd5036ba40e297500a0cee7e8e613e.tar.gz
Replace mox with mox3
mox doesn't work on Python 3, whereas mox3 works on Python 2 and Python 3. Cinder, Nova and many other projects already replaced mox with mox3. mox3 is now maintained by OpenStack. Partial-Implements: blueprint porting-python3 Change-Id: I10e6a9754ebd58a2640d73ec8966527c3aa1fe9a
Diffstat (limited to 'openstack_dashboard/dashboards/admin/info')
-rw-r--r--openstack_dashboard/dashboards/admin/info/tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/openstack_dashboard/dashboards/admin/info/tests.py b/openstack_dashboard/dashboards/admin/info/tests.py
index 2604a3aea..83af32753 100644
--- a/openstack_dashboard/dashboards/admin/info/tests.py
+++ b/openstack_dashboard/dashboards/admin/info/tests.py
@@ -14,8 +14,8 @@
from django.core.urlresolvers import reverse
from django import http
-from mox import IgnoreArg # noqa
-from mox import IsA # noqa
+from mox3.mox import IgnoreArg # noqa
+from mox3.mox import IsA # noqa
from openstack_dashboard import api
from openstack_dashboard.test import helpers as test