aboutsummaryrefslogtreecommitdiffstats
path: root/tests/system/suite_general/tst_default_settings/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/system/suite_general/tst_default_settings/test.py')
-rw-r--r--tests/system/suite_general/tst_default_settings/test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/system/suite_general/tst_default_settings/test.py b/tests/system/suite_general/tst_default_settings/test.py
index 2cb40725b82..29c65425b09 100644
--- a/tests/system/suite_general/tst_default_settings/test.py
+++ b/tests/system/suite_general/tst_default_settings/test.py
@@ -306,7 +306,7 @@ def __compareCompilers__(foundCompilers, expectedCompilers):
if isinstance(currentFound, dict):
foundExp = False
for currentExp in expectedCompilers:
- if isinstance(currentExp, (str, unicode)):
+ if isString(currentExp):
continue
key = currentExp.keys()[0]
# special case for (fuzzy) regex comparison on Windows (internal LLVM)
@@ -353,7 +353,7 @@ def __compareDebuggers__(foundDebuggers, expectedDebuggers):
def __lowerStrs__(iterable):
for it in iterable:
- if isinstance(it, (str, unicode)):
+ if isString(it):
yield it.lower()
else:
yield it