From 566a5541cc299aa9e0f68c1abac6f8f06764a8fb Mon Sep 17 00:00:00 2001 From: Jozef Behran Date: Thu, 18 Feb 2016 09:52:16 +0100 Subject: [PATCH] Fix "SyntaxError: EOL while scanning string literal" Change-Id: Ib4bc03e5edc2221274cde3a278c986317ac4e732 Signed-off-by: Jozef Behran --- csit/libraries/Utils.robot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csit/libraries/Utils.robot b/csit/libraries/Utils.robot index 038989d445..919da36a04 100644 --- a/csit/libraries/Utils.robot +++ b/csit/libraries/Utils.robot @@ -70,7 +70,7 @@ Report_Failure_Due_To_Bug ... or as the first line of the test if FastFail module is not being ... used. It reports the URL of the bug on console and also puts it ... into the Robot log file. - ${test_skipped}= BuiltIn.Evaluate len(re.findall('SKIPPED', '''${TEST_MESSAGE}''')) > 0 modules=re + ${test_skipped}= BuiltIn.Evaluate len(re.findall('SKIPPED', """${TEST_MESSAGE}""")) > 0 modules=re BuiltIn.Return From Keyword If ('${TEST_STATUS}' != 'FAIL') or ${test_skipped} ${newline}= BuiltIn.Evaluate chr(10) ${msg}= BuiltIn.Set_Variable This test fails due to https://bugs.opendaylight.org/show_bug.cgi?id=${number} -- 2.36.6