From 876c2ac4261a0422fe09492df503bf6261e40bd5 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Tue, 14 Jan 2020 12:59:37 +0100 Subject: [PATCH] thou used as a primary unit in a fmt unit test --- test/unit_test/runtime/fmt_units_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit_test/runtime/fmt_units_test.cpp b/test/unit_test/runtime/fmt_units_test.cpp index e46a7a70..28966448 100644 --- a/test/unit_test/runtime/fmt_units_test.cpp +++ b/test/unit_test/runtime/fmt_units_test.cpp @@ -72,7 +72,7 @@ TEST_CASE("fmt::format on synthesized unit symbols", "[text][fmt]") CHECK(fmt::format("{}", 1naut_mi) == "1 mi(naut)"); CHECK(fmt::format("{}", 1ch) == "1 ch"); CHECK(fmt::format("{}", 1rd) == "1 rd"); - CHECK(fmt::format("{}", 1mil) == "1 mil"); + CHECK(fmt::format("{}", 1thou) == "1 thou"); CHECK(fmt::format("{}", 1pc) == "1 pc"); CHECK(fmt::format("{}", 1ly) == "1 ly"); CHECK(fmt::format("{}", 1pc) == "1 pc");