Skip to content
Merged
Prev Previous commit
Next Next commit
fix test
  • Loading branch information
methane committed May 31, 2024
commit 2392d2087ba0dcb5d19bfc81747f4d77259321d5
2 changes: 1 addition & 1 deletion Lib/test/test_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -4030,7 +4030,7 @@ def write(self, data):
t.write("bcd")
t.flush()

self.assertEqual([b"a" * (chunk_size - 1), b"bcdefg"], buf._write_stack)
self.assertEqual([b"a" * (chunk_size - 1), b"efgbcd"], buf._write_stack)


class PyTextIOWrapperTest(TextIOWrapperTest):
Expand Down