summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/utils.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/utils.py b/tests/utils.py
index 792fe88e..633442c9 100644
--- a/tests/utils.py
+++ b/tests/utils.py
@@ -2,7 +2,6 @@
import time
-import mox
import testtools
@@ -10,12 +9,9 @@ class TestCase(testtools.TestCase):
def setUp(self):
super(TestCase, self).setUp()
- self.mox = mox.Mox()
self._original_time = time.time
time.time = lambda: 1234
def tearDown(self):
time.time = self._original_time
- self.mox.UnsetStubs()
- self.mox.VerifyAll()
super(TestCase, self).tearDown()