diff --git a/tests/system/shared/workarounds.py b/tests/system/shared/workarounds.py index a783fb34eb7..9d3edbf271a 100644 --- a/tests/system/shared/workarounds.py +++ b/tests/system/shared/workarounds.py @@ -185,6 +185,9 @@ class JIRA: # this function crops multiple whitespaces from fetched and searches for expected # ids without using regex def __cropAndLog__(self, fetched): + if fetched == None: + test.log("None passed to __cropAndLog__()") + return fetched = " ".join(fetched.split()) resoInd = fetched.find('resolution-val') statInd = fetched.find('status-val')