summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDirk Mueller <dirk@dmllr.de>2014-03-23 23:37:17 +0100
committerDirk Mueller <dirk@dmllr.de>2014-03-23 23:37:17 +0100
commit3a4e6b5b814348e7851ab002ae8e4c1b8a543909 (patch)
tree9b90743daf1779a996f2ee826dc3f2e18a9c60af
parent4d6d4139fc35ab6639cbcb6a207be6db7142ce9c (diff)
downloadheat-cfntools-3a4e6b5b814348e7851ab002ae8e4c1b8a543909.tar.gz
Switch over to mox3
mox3 is the Python 3.x compatible replacement of mox. Change-Id: If107d0ebde50d3461505c5f722d53557993f1e7e
-rw-r--r--heat_cfntools/tests/test_cfn_helper.py2
-rw-r--r--heat_cfntools/tests/test_cfn_hup.py2
-rw-r--r--test-requirements.txt2
3 files changed, 3 insertions, 3 deletions
diff --git a/heat_cfntools/tests/test_cfn_helper.py b/heat_cfntools/tests/test_cfn_helper.py
index a661014..9a0d8e1 100644
--- a/heat_cfntools/tests/test_cfn_helper.py
+++ b/heat_cfntools/tests/test_cfn_helper.py
@@ -17,7 +17,7 @@
import boto.cloudformation as cfn
import fixtures
import json
-import mox
+from mox3 import mox
import os
import subprocess
import tempfile
diff --git a/heat_cfntools/tests/test_cfn_hup.py b/heat_cfntools/tests/test_cfn_hup.py
index 3ebd671..d548760 100644
--- a/heat_cfntools/tests/test_cfn_hup.py
+++ b/heat_cfntools/tests/test_cfn_hup.py
@@ -14,7 +14,7 @@
# under the License.
import fixtures
-import mox
+from mox3 import mox
import tempfile
import testtools
diff --git a/test-requirements.txt b/test-requirements.txt
index 7528079..d523570 100644
--- a/test-requirements.txt
+++ b/test-requirements.txt
@@ -1,7 +1,7 @@
# Hacking already pins down pep8, pyflakes and flake8
hacking>=0.8.0,<0.9
-mox>=0.5.3
+mox3>=0.7.0
discover
testrepository>=0.0.17
testtools>=0.9.32