From 9c8db26457ef06fef0b07a07407c8feb04a9031b Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sat, 28 Jun 2014 13:06:49 -0700 Subject: [PATCH] Fix build, take 2. --- test/format-test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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")); }