Revision: 9481467a5a19
Author: Janne Härkönen <[email protected]>
Date: Thu Mar 22 04:34:37 2012
Log: Fix test with newline problems in Windows
http://code.google.com/p/robotframework/source/detail?r=9481467a5a19
Modified:
/utest/writer/test_filewriters.py
=======================================
--- /utest/writer/test_filewriters.py Fri Mar 16 00:57:30 2012
+++ /utest/writer/test_filewriters.py Thu Mar 22 04:34:37 2012
@@ -55,7 +55,7 @@
A test
A kw an arg'''.strip()
actual = output.getvalue().strip()
- assert_equals(repr(expected), repr(actual))
+ assert_equals(expected.splitlines(), actual.splitlines())
class TestTsvWriter(_WriterTestCase):