diff --git a/test/format-test.cc b/test/format-test.cc index 06919769..40b94749 100644 --- a/test/format-test.cc +++ b/test/format-test.cc @@ -1689,5 +1689,5 @@ FMT_VARIADIC(std::string, FormatMessage, int, const char *) TEST(FormatTest, FormatMessageExample) { EXPECT_EQ("[42] something happened", - MyFormatError(42, "{} happened", "something")); + FormatMessage(42, "{} happened", "something")); }