From 36d091a858ad97744bc2437e2c1ea4577594e9d6 Mon Sep 17 00:00:00 2001 From: Tobias Hunger <tobias.hunger@digia.com> Date: Wed, 13 Feb 2013 10:22:59 +0100 Subject: [PATCH] Fix unit test: UnknownFlavor should actually be listed Change-Id: I858eb6efe05dbc9a770bb7e858bd033e81df0f60 Reviewed-by: Tobias Hunger <tobias.hunger@digia.com> --- src/plugins/projectexplorer/abi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/projectexplorer/abi.cpp b/src/plugins/projectexplorer/abi.cpp index 8393baa8cbd..f962f60491a 100644 --- a/src/plugins/projectexplorer/abi.cpp +++ b/src/plugins/projectexplorer/abi.cpp @@ -876,7 +876,7 @@ void ProjectExplorer::ProjectExplorerPlugin::testFlavorForOs() foundCounter = 0; // make sure i is in exactly on of the flavor lists! foreach (const QList<Abi::OSFlavor> &l, flavorLists) { - QVERIFY(!l.contains(Abi::UnknownFlavor)); + QVERIFY(l.contains(Abi::UnknownFlavor)); if (l.contains(static_cast<Abi::OSFlavor>(i))) ++foundCounter; } -- GitLab