summaryrefslogtreecommitdiff
path: root/tests/system/suite_tools/tst_git_clone/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/system/suite_tools/tst_git_clone/test.py')
-rw-r--r--tests/system/suite_tools/tst_git_clone/test.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/system/suite_tools/tst_git_clone/test.py b/tests/system/suite_tools/tst_git_clone/test.py
index 656b29863e..a7f5a5dde8 100644
--- a/tests/system/suite_tools/tst_git_clone/test.py
+++ b/tests/system/suite_tools/tst_git_clone/test.py
@@ -53,9 +53,11 @@ def verifyCloneLog(targetDir, canceled):
"Searching for clone directory in clone log")
result = "The process terminated with exit code 0."
summary = "Succeeded."
+ # cloneLog.plainText holds escape as character which makes QDom fail while printing the result
+ # removing these for letting Jenkins continue execute the test suite
test.xverify((result in str(cloneLog.plainText)),
"Searching for result (%s) in clone log:\n%s"
- % (result, str(cloneLog.plainText)))
+ % (result, str(cloneLog.plainText).replace(unicode("\x1b"), "")))
test.compare(waitForObject(":Git Repository Clone.Result._QLabel").text, summary)
def verifyFiles(targetDir):