From 3a4e6b5b814348e7851ab002ae8e4c1b8a543909 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Sun, 23 Mar 2014 23:37:17 +0100 Subject: [PATCH] Switch over to mox3 mox3 is the Python 3.x compatible replacement of mox. Change-Id: If107d0ebde50d3461505c5f722d53557993f1e7e --- heat_cfntools/tests/test_cfn_helper.py | 2 +- heat_cfntools/tests/test_cfn_hup.py | 2 +- test-requirements.txt | 2 +- 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