aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-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);
}
}
}