aboutsummaryrefslogtreecommitdiffstats
path: root/tests/system/shared/qtcreator.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/system/shared/qtcreator.py')
-rw-r--r--tests/system/shared/qtcreator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/system/shared/qtcreator.py b/tests/system/shared/qtcreator.py
index 295a9ed2cf..76dbd7071d 100644
--- a/tests/system/shared/qtcreator.py
+++ b/tests/system/shared/qtcreator.py
@@ -212,7 +212,7 @@ def __guessABI__(supportedABIs, use64Bit):
if platform.system() == 'Linux':
supportedABIs = filter(lambda x: 'linux' in x, supportedABIs)
elif platform.system() == 'Darwin':
- supportedABIs = filter(lambda x: 'macos' in x, supportedABIs)
+ supportedABIs = filter(lambda x: 'darwin' in x, supportedABIs)
if use64Bit:
searchFor = "64bit"
else: