diff options
author | Raphaël Barrois <raphael.barrois@polyconseil.fr> | 2012-04-13 17:52:08 +0200 |
---|---|---|
committer | Raphaël Barrois <raphael.barrois@polyconseil.fr> | 2012-04-15 10:06:39 +0200 |
commit | 03c92201e34cea40b494c4aefb324af100c181ea (patch) | |
tree | 1172dc59532035b9e7769321293a838de6a2a81a /tests/test_base.py | |
parent | 3ba8ed544fa9e866f97efc41155ee296f022e9b4 (diff) | |
download | factory-boy-03c92201e34cea40b494c4aefb324af100c181ea.tar factory-boy-03c92201e34cea40b494c4aefb324af100c181ea.tar.gz |
Make tests compatible with python2.6 + unittest2
Signed-off-by: Raphaël Barrois <raphael.barrois@polyconseil.fr>
Diffstat (limited to 'tests/test_base.py')
-rw-r--r-- | tests/test_base.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/tests/test_base.py b/tests/test_base.py index 0788f82..e0a6547 100644 --- a/tests/test_base.py +++ b/tests/test_base.py @@ -20,16 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -try: - import unittest2 as unittest -except ImportError: - import unittest - import warnings from factory import base from factory import declarations +from .compat import unittest + class TestObject(object): def __init__(self, one=None, two=None, three=None, four=None): self.one = one |