diff options
Diffstat (limited to 'unittests/linuxliketests.py')
-rw-r--r-- | unittests/linuxliketests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unittests/linuxliketests.py b/unittests/linuxliketests.py index 406950e..565b328 100644 --- a/unittests/linuxliketests.py +++ b/unittests/linuxliketests.py @@ -387,8 +387,8 @@ class LinuxlikeTests(BasePlatformTests): Test that qt6 detection with qmake works. This can't be an ordinary test case because it involves setting the environment. ''' - # Verify that qmake is for Qt5 - if not shutil.which('qmake-qt6'): + # Verify that qmake is for Qt6 + if not shutil.which('qmake6'): if not shutil.which('qmake'): raise SkipTest('QMake not found') output = subprocess.getoutput('qmake --version') |