Replace multiple error reporting mechanisms with report_error

This commit is contained in:
Victor Zverovich
2024-01-15 06:48:10 -08:00
parent f9294f0e60
commit fe0d910a7d
8 changed files with 70 additions and 74 deletions

View File

@@ -447,7 +447,7 @@ TEST(memory_buffer_test, max_size_allocator_overflow) {
}
TEST(format_test, exception_from_lib) {
EXPECT_THROW_MSG(fmt::throw_format_error("test"), format_error, "test");
EXPECT_THROW_MSG(fmt::report_error("test"), format_error, "test");
}
TEST(format_test, escape) {