From 0d24f79e074d3bce4cee51003905ef2c3f36d80a Mon Sep 17 00:00:00 2001
From: felmer <felmer>
Date: Mon, 26 May 2014 09:25:15 +0000
Subject: [PATCH] improve error message comparison

SVN: 31589
---
 integration-tests/test_yeastx.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/integration-tests/test_yeastx.py b/integration-tests/test_yeastx.py
index e1bb659bec4..4570768e7d5 100755
--- a/integration-tests/test_yeastx.py
+++ b/integration-tests/test_yeastx.py
@@ -101,7 +101,7 @@ class TestCase(systemtest.testcase.TestCase):
                     expectedLines = self.getExpectedLogEntries(openbisController.testName, dataName)
                     failed = False
                     for i, line, expectedLine in zip(range(len(lines)), lines, expectedLines):
-                        if not self.assertEquals("%d. line of '%s'" % (i+1, dataName), expectedLine.rstrip(), line.rstrip()):
+                        if not self.assertEquals("%d. line of '%s'" % (i+1, dataName), expectedLine.strip(), line.strip()):
                             self.printLogEntries(lines)
                             failed = True
                             break
-- 
GitLab