aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/test_install_plan.cpp
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2017-08-21 21:08:43 -0700
committerRobert Schumacher <roschuma@microsoft.com>2017-08-21 21:08:43 -0700
commit6784704638f46d89d01458b1004e588f535958aa (patch)
treeb8f3fea4487f1936bec0aa25ff33033de5e3915e /toolsrc/src/test_install_plan.cpp
parentd708484077ef891c5a69e4d9211613dbcfacb91e (diff)
downloadvcpkg-6784704638f46d89d01458b1004e588f535958aa.tar.gz
vcpkg-6784704638f46d89d01458b1004e588f535958aa.zip
[vcpkg] Improve error messages when a feature is requested that doesn't exist.
Diffstat (limited to 'toolsrc/src/test_install_plan.cpp')
-rw-r--r--toolsrc/src/test_install_plan.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/toolsrc/src/test_install_plan.cpp b/toolsrc/src/test_install_plan.cpp
index d7a5014a9..1c415f273 100644
--- a/toolsrc/src/test_install_plan.cpp
+++ b/toolsrc/src/test_install_plan.cpp
@@ -537,9 +537,9 @@ namespace UnitTest1
remove_plan_check(&install_plan[1], "b");
// TODO: order here may change but A < X, and B anywhere
- features_check(&install_plan[2], "a", {"core"});
- features_check(&install_plan[3], "x", {"core"});
- features_check(&install_plan[4], "b", {"core", "1"});
+ features_check(&install_plan[2], "b", {"core", "1"});
+ features_check(&install_plan[3], "a", {"core"});
+ features_check(&install_plan[4], "x", {"core"});
}
TEST_METHOD(basic_feature_test_8)