From dd1b60b63896d66fb51a7dbb87a82db838c806b3 Mon Sep 17 00:00:00 2001 From: gfyoung Date: Thu, 21 Jul 2016 12:24:25 -0400 Subject: [PATCH] TST, COMPAT: Make MMapWrapper tests Windows compatible --- pandas/io/tests/test_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/io/tests/test_common.py b/pandas/io/tests/test_common.py index 5740944558a5d..0acf3244fe8fa 100644 --- a/pandas/io/tests/test_common.py +++ b/pandas/io/tests/test_common.py @@ -138,6 +138,6 @@ def test_next(self): for line in lines: next_line = next(wrapper) - self.assertEqual(next_line, line) + self.assertEqual(next_line.strip(), line.strip()) self.assertRaises(StopIteration, next, wrapper)