From b2a2d81e37283ab3ca2b13059afef099a758b504 Mon Sep 17 00:00:00 2001 From: Nicolas Lesser Date: Wed, 5 Dec 2018 19:13:52 +0100 Subject: [PATCH] Fix wrong order of test. --- test/format-impl-test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/format-impl-test.cc b/test/format-impl-test.cc index b9a822b7..a26b5544 100644 --- a/test/format-impl-test.cc +++ b/test/format-impl-test.cc @@ -224,5 +224,5 @@ TEST(ColorsTest, Colors) { EXPECT_WRITE( stdout, fmt::print(fg(fmt::color::blue) | fmt::emphasis::bold, "blue/bold"), - "\x1b[38;2;000;000;255m\x1b[1mblue/bold\x1b[0m"); + "\x1b[1m\x1b[38;2;000;000;255mblue/bold\x1b[0m"); }