diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-09-14 02:33:15 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-09-14 02:44:41 +0300 |
commit | a04f97f907dfc41216322dd4fdd8ec41e1debc8a (patch) | |
tree | 8e90843a9cf9f6433b4df6350a9963c6ba2060cf /test/unit_tests | |
parent | clang-format: regroup #includes (diff) | |
download | winapi-debug-a04f97f907dfc41216322dd4fdd8ec41e1debc8a.tar.gz winapi-debug-a04f97f907dfc41216322dd4fdd8ec41e1debc8a.zip |
test_lib: test -> test_ns
Diffstat (limited to '')
-rw-r--r-- | test/unit_tests/dbghelp.cpp | 2 | ||||
-rw-r--r-- | test/unit_tests/fixtures.hpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/unit_tests/dbghelp.cpp b/test/unit_tests/dbghelp.cpp index aab292f..4346bf7 100644 --- a/test/unit_tests/dbghelp.cpp +++ b/test/unit_tests/dbghelp.cpp @@ -46,7 +46,7 @@ BOOST_AUTO_TEST_CASE(enum_symbols) { BOOST_AUTO_TEST_CASE(call_stack) { try { - test::foo(&throw_call_stack); + test_ns::foo(&throw_call_stack); } catch (const pdb::CallStack& call_stack) { BOOST_TEST(true, "Caught the call stack"); return; diff --git a/test/unit_tests/fixtures.hpp b/test/unit_tests/fixtures.hpp index f6571d1..eb7dcc0 100644 --- a/test/unit_tests/fixtures.hpp +++ b/test/unit_tests/fixtures.hpp @@ -39,7 +39,7 @@ public: DbgHelpWithSymbols() { load_test_lib_pdb(); } static const std::string& get_namespace() { - static const std::string name{"test"}; + static const std::string name{"test_ns"}; return name; } |