Skip to content

Commit dd1b60b

Browse files
committed
TST, COMPAT: Make MMapWrapper tests Windows compatible
1 parent 1ce8f8e commit dd1b60b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/io/tests/test_common.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,6 @@ def test_next(self):
138138

139139
for line in lines:
140140
next_line = next(wrapper)
141-
self.assertEqual(next_line, line)
141+
self.assertEqual(next_line.strip(), line.strip())
142142

143143
self.assertRaises(StopIteration, next, wrapper)

0 commit comments

Comments
 (0)