From 0a78d89b24778ed4a9e5f525844c0ce2b0784a1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Mon, 2 Feb 2026 12:56:29 +0100 Subject: [PATCH] Replace BOOST_ASSERT with BOOST_TEST --- test/string_options_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/string_options_test.cpp b/test/string_options_test.cpp index b837067..f57ecce 100644 --- a/test/string_options_test.cpp +++ b/test/string_options_test.cpp @@ -63,7 +63,7 @@ void test_stored_size_type() BOOST_CONTAINER_STATIC_ASSERT(sizeof(string_t) == theoretical_long_repr_t); const std::size_t theoretical_sso_cap = theoretical_long_repr_t - 2u; //-2 --> 1 for short header, 1 for null terminator string_t s; - BOOST_ASSERT(s.capacity() == theoretical_sso_cap); + BOOST_TEST(s.capacity() == theoretical_sso_cap); } }