Commit 149a8993 authored by Jack Jansen's avatar Jack Jansen

The filename fix of the previous checkin was complete bogus, the problem is elsewhere. Retracting.

parent c7fcc2d7
......@@ -74,7 +74,7 @@ class ReadTest(BaseTest):
"""
if self.sep != "|":
f1 = self.tar.extractfile("S-SPARSE")
f2 = self.tar.extractfile("/S-SPARSE-WITH-NULLS")
f2 = self.tar.extractfile("S-SPARSE-WITH-NULLS")
self.assert_(f1.read() == f2.read(),
"_FileObject failed on sparse file member")
......@@ -82,7 +82,7 @@ class ReadTest(BaseTest):
"""Test readlines() method of _FileObject.
"""
if self.sep != "|":
filename = "/0-REGTYPE-TEXT"
filename = "0-REGTYPE-TEXT"
self.tar.extract(filename, dirname())
lines1 = file(os.path.join(dirname(), filename), "rU").readlines()
lines2 = self.tar.extractfile(filename).readlines()
......@@ -93,7 +93,7 @@ class ReadTest(BaseTest):
"""Test seek() method of _FileObject, incl. random reading.
"""
if self.sep != "|":
filename = "/0-REGTYPE"
filename = "0-REGTYPE"
self.tar.extract(filename, dirname())
data = file(os.path.join(dirname(), filename), "rb").read()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment