summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/unittest_testlib.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/unittest_testlib.py b/test/unittest_testlib.py
index dad561a..9672560 100644
--- a/test/unittest_testlib.py
+++ b/test/unittest_testlib.py
@@ -235,10 +235,6 @@ class TestlibTC(TestCase):
# class' custom datadir
tc = MyTC('test_1')
self.assertEqual(tc.datapath('bar'), join('foo', 'bar'))
- # instance's custom datadir
- self.skipTest('should this really work?')
- tc.datadir = 'spam'
- self.assertEqual(tc.datapath('bar'), join('spam', 'bar'))
def test_cached_datadir(self):
"""test datadir is cached on the class"""