Fix typo: '\E' is not an escape sequence.

This commit is contained in:
Soumya
2020-03-25 23:23:12 -07:00
committed by Fabian Homborg
parent 96563d6eff
commit 654a266b22

View File

@@ -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);