aboutsummaryrefslogtreecommitdiffstats
path: root/tests/system/shared/project_explorer.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/system/shared/project_explorer.py')
-rw-r--r--tests/system/shared/project_explorer.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/system/shared/project_explorer.py b/tests/system/shared/project_explorer.py
index 587574ff0a5..a4abeb7a723 100644
--- a/tests/system/shared/project_explorer.py
+++ b/tests/system/shared/project_explorer.py
@@ -95,8 +95,8 @@ def setRunInTerminal(wantedKit, runInTerminal=True):
switchViewTo(ViewConstants.EDIT)
def __getTargetFromToolTip__(toolTip):
- if toolTip == None or not isinstance(toolTip, (str, unicode)):
- test.warning("Parameter toolTip must be of type str or unicode and can't be None!")
+ if toolTip == None or not isString(toolTip):
+ test.warning("Parameter toolTip must be of type str and can't be None!")
return None
pattern = re.compile(".*<b>Kit:</b>(.*)<b>Deploy.*")
target = pattern.match(toolTip)
@@ -108,7 +108,7 @@ def __getTargetFromToolTip__(toolTip):
def getExecutableAndTargetFromToolTip(toolTip):
target = __getTargetFromToolTip__(toolTip)
- if toolTip == None or not isinstance(toolTip, (str, unicode)):
+ if toolTip == None or not isString(toolTip):
return None, target
pattern = re.compile('.*<b>Run:</b>(.*)</.*')
exe = pattern.match(toolTip)