From 6d4a37840679d9fc5842f427f23c79fa6b4ccf75 Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Mon, 21 Jun 2010 13:57:49 -0400 Subject: tearDown -> tearDownModules. --- tests/mock/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/mock/__init__.py b/tests/mock/__init__.py index a72d1aa73..8c35c9c51 100644 --- a/tests/mock/__init__.py +++ b/tests/mock/__init__.py @@ -49,7 +49,7 @@ class TestCase(unittest.TestCase): oldname += m + "." self.injectedModules[mname] = mod - def tearDown(self): + def tearDownModules(self): """Unload previously Mocked modules""" import sys -- cgit