Revision: 25c5be54ab0e
Author: Pekka Klärck
Date: Tue Jan 17 06:31:10 2012
Log: debugging weird failure on ci
http://code.google.com/p/robotframework/source/detail?r=25c5be54ab0e
Modified:
/utest/utils/test_htmlwriter.py
=======================================
--- /utest/utils/test_htmlwriter.py Tue Jan 17 06:17:21 2012
+++ /utest/utils/test_htmlwriter.py Tue Jan 17 06:31:10 2012
@@ -123,7 +123,9 @@
def _verify(self, expected):
actual = self.output.getvalue()
- assert_equals(actual, expected.replace('\n', os.linesep))
+ expected = expected.replace('\n', os.linesep)
+ assert_equals(repr(actual), repr(expected))
+ assert_equals(actual, expected)
if __name__ == '__main__':