From 654a266b228e75b8b88a7b1ce57dcb15354f65ec Mon Sep 17 00:00:00 2001 From: Soumya Date: Wed, 25 Mar 2020 23:23:12 -0700 Subject: [PATCH] Fix typo: '\E' is not an escape sequence. --- src/fish_tests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fish_tests.cpp b/src/fish_tests.cpp index 3d8136ded..38d17b83a 100644 --- a/src/fish_tests.cpp +++ b/src/fish_tests.cpp @@ -5671,7 +5671,7 @@ Executed in 500.00 micros fish external // (c) carry to the next unit when the larger one exceeds 1000 std::wstring actual = timer_snapshot_t::print_delta(t1, t2, true); if (actual != expected) { - err(L"Failed to format timer snapshot\n\Expected: %ls\nActual:%ls\n", expected, + err(L"Failed to format timer snapshot\nExpected: %ls\nActual:%ls\n", expected, actual.c_str()); } setlocale(LC_NUMERIC, saved_locale);