Browse Source

Re-enable test_archive.

Jelmer Vernooij 8 years ago
parent
commit
b5402b6027
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dulwich/tests/test_archive.py

+ 1 - 1
dulwich/tests/test_archive.py

@@ -21,6 +21,7 @@
 """Tests for archive support."""
 
 from io import BytesIO
+import sys
 import tarfile
 
 from dulwich.archive import tar_stream
@@ -52,7 +53,6 @@ class ArchiveTests(TestCase):
         self.assertEqual([], tf.getnames())
 
     def test_simple(self):
-        self.skipTest("known to fail on python2.6 and 3.4; needs debugging")
         store = MemoryObjectStore()
         b1 = Blob.from_string(b"somedata")
         store.add_object(b1)