Skip to content
Snippets Groups Projects
Commit a304fb45 authored by Tobias Hunger's avatar Tobias Hunger
Browse files

SDKtool: Fix a warning in test code


Change-Id: I5510295ec0dd631031402ca681b4275f1b4adb83
Reviewed-by: default avatarTobias Hunger <tobias.hunger@digia.com>
parent d1370824
No related branches found
No related tags found
No related merge requests found
......@@ -165,7 +165,7 @@ bool AddQtOperation::test() const
{
QVariantMap map = initializeQtVersions();
if (!map.count() == 1
if (map.count() != 1
|| !map.contains(QLatin1String(VERSION))
|| map.value(QLatin1String(VERSION)).toInt() != 1)
return false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment