aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2020-09-14 16:37:23 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2020-09-14 16:37:23 +0300
commitb59d63e025dce416f3f5836afa0de74d12469c49 (patch)
tree6263b7b914537456083a5780010f68dce2812306
parentunit_tests: fix the tests (diff)
downloadwinapi-debug-b59d63e025dce416f3f5836afa0de74d12469c49.tar.gz
winapi-debug-b59d63e025dce416f3f5836afa0de74d12469c49.zip
unit_tests: adjust test messages
-rw-r--r--test/unit_tests/dbghelp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit_tests/dbghelp.cpp b/test/unit_tests/dbghelp.cpp
index bd2d300..ea64939 100644
--- a/test/unit_tests/dbghelp.cpp
+++ b/test/unit_tests/dbghelp.cpp
@@ -29,7 +29,7 @@ BOOST_AUTO_TEST_CASE(enum_symbols) {
return std::find(all_symbols.cbegin(), all_symbols.cend(), name) != all_symbols.cend();
};
for (const auto& name : expected) {
- BOOST_TEST(check(name), "Symbol wasn't enumerated: " << name);
+ BOOST_TEST(check(name), "Symbol found: " << name);
}
}
}