Commit d0b6040c authored by Lars Gustäbel's avatar Lars Gustäbel

A missing binary mode in AppendTest caused failures in Windows

Buildbot.
parent f1a4aa34
...@@ -336,7 +336,7 @@ class AppendTest(unittest.TestCase): ...@@ -336,7 +336,7 @@ class AppendTest(unittest.TestCase):
self._test() self._test()
def test_empty(self): def test_empty(self):
open(self.tarname, "w").close() open(self.tarname, "wb").close()
self._add_testfile() self._add_testfile()
self._test() self._test()
...@@ -348,7 +348,7 @@ class AppendTest(unittest.TestCase): ...@@ -348,7 +348,7 @@ class AppendTest(unittest.TestCase):
def test_fileobj(self): def test_fileobj(self):
self._create_testtar() self._create_testtar()
data = open(self.tarname).read() data = open(self.tarname, "rb").read()
fobj = StringIO.StringIO(data) fobj = StringIO.StringIO(data)
self._add_testfile(fobj) self._add_testfile(fobj)
fobj.seek(0) fobj.seek(0)
......
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