From 24a38922bd506ba71a899c37a0f6d64bb334c388 Mon Sep 17 00:00:00 2001 From: LeonineKing1199 Date: Thu, 18 Nov 2021 09:36:04 -0800 Subject: [PATCH] Replace `BOOST_TEST` call with `BOOST_ASSERT` to resolve https://github.com/boostorg/unordered/issues/36 --- test/helpers/memory.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/helpers/memory.hpp b/test/helpers/memory.hpp index 22946cc2..89ecf1f8 100644 --- a/test/helpers/memory.hpp +++ b/test/helpers/memory.hpp @@ -68,7 +68,7 @@ namespace test { { } - ~memory_tracker() { BOOST_TEST(count_allocators == 0); } + ~memory_tracker() { BOOST_ASSERT(count_allocators == 0); } void allocator_ref() {