From a16291b353b37fcdbe4b705df7ccf3a6e7690308 Mon Sep 17 00:00:00 2001 From: Kelsey Jordahl Date: Wed, 16 Apr 2014 14:52:32 -0400 Subject: [PATCH] PY26: Use local unittest that gets unittest2 for python 2.6 --- tests/test_io.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_io.py b/tests/test_io.py index 086ecab..8372caf 100644 --- a/tests/test_io.py +++ b/tests/test_io.py @@ -1,11 +1,10 @@ from __future__ import absolute_import -import unittest - import fiona from geopandas import GeoDataFrame, read_postgis, read_file import tests.util +from .util import unittest class TestIO(unittest.TestCase): def setUp(self):