python3: Transition to mox3 instead of mox

In order to make the transition to mox free world,
mox needs to replaced with mox3 which is python3 compatible.

Change-Id: Id18928c7ac93b510a4867acb03896899fe1c13b0
Signed-off-by: Chuck Short <chuck.short@canonical.com>
This commit is contained in:
Chuck Short
2013-08-23 12:13:25 -04:00
parent 76dac7760d
commit 8f42f105b6
4 changed files with 4 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ fixtures>=0.3.12
httpretty>=0.6.3
keyring>=1.6.1
mock>=0.8.0
mox>=0.5.3
mox3>=0.7.0
pycrypto>=2.6
sphinx>=1.1.2
testrepository>=0.0.17

View File

@@ -1,7 +1,7 @@
import time
import mock
import mox
from mox3 import mox
import requests
import testtools

View File

@@ -1,8 +1,8 @@
import cStringIO
import os
import stubout
import sys
from mox3 import stubout
from testtools import matchers
from keystoneclient import httpclient

View File

@@ -5,7 +5,7 @@ import urlparse
import uuid
import mock
import mox
from mox3 import mox
import requests
import testtools