diff options
-rw-r--r-- | Lib/test/test_io.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_io.py b/Lib/test/test_io.py index 36aaf14..2f222af 100644 --- a/Lib/test/test_io.py +++ b/Lib/test/test_io.py @@ -528,13 +528,13 @@ class TextIOWrapperTest(unittest.TestCase): t = io.TextIOWrapper(b, encoding="ascii", errors="ignore") t.write("abc\xffdef\n") t.flush() - self.assertEquals(b.getvalue(), b"abcdef\n") + self.assertEquals(b.getvalue(), b"abcdef" + os.linesep.encode()) # (4) replace b = io.BytesIO() t = io.TextIOWrapper(b, encoding="ascii", errors="replace") t.write("abc\xffdef\n") t.flush() - self.assertEquals(b.getvalue(), b"abc?def\n") + self.assertEquals(b.getvalue(), b"abc?def" + os.linesep.encode()) def testNewlinesInput(self): testdata = b"AAA\nBBB\nCCC\rDDD\rEEE\r\nFFF\r\nGGG" |