diff options
author | fanquake <fanquake@gmail.com> | 2021-05-27 15:14:55 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2021-05-28 19:14:09 +0800 |
commit | 6c3fcd5591eb9947f35483014ecb0d8ab217b780 (patch) | |
tree | 001599f93e23a4c1429a60a20194710eb9722888 /src/test/util_threadnames_tests.cpp | |
parent | b53d3c1b1fd739c314b0b34f361fcd992092fc29 (diff) |
test: remove BasicTestingSetup from util_threadnames unit tests
Diffstat (limited to 'src/test/util_threadnames_tests.cpp')
-rw-r--r-- | src/test/util_threadnames_tests.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/util_threadnames_tests.cpp b/src/test/util_threadnames_tests.cpp index f3f9fb2bff..a5b456dd7a 100644 --- a/src/test/util_threadnames_tests.cpp +++ b/src/test/util_threadnames_tests.cpp @@ -2,12 +2,12 @@ // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#include <test/util/setup_common.h> #include <util/string.h> #include <util/threadnames.h> #include <mutex> #include <set> +#include <string> #include <thread> #include <vector> @@ -17,7 +17,7 @@ #include <boost/test/unit_test.hpp> -BOOST_FIXTURE_TEST_SUITE(util_threadnames_tests, BasicTestingSetup) +BOOST_AUTO_TEST_SUITE(util_threadnames_tests) const std::string TEST_THREAD_NAME_BASE = "test_thread."; |