@@ -90,9 +90,6 @@ TEST(compile_test, format_escape) {
9090 EXPECT_EQ (" \" abc\" " , fmt::format (FMT_COMPILE (" {0:<7?}" ), " abc" ));
9191}
9292
93- TEST (compile_test, format_wide_string) {
94- EXPECT_EQ (L" 42" , fmt::format (FMT_COMPILE (L" {}" ), 42 ));
95- }
9693
9794TEST (compile_test, format_specs) {
9895 EXPECT_EQ (" 42" , fmt::format (FMT_COMPILE (" {:x}" ), 0x42 ));
@@ -124,7 +121,6 @@ TEST(compile_test, manual_ordering) {
124121 " true 42 42 foo 0x1234 foo" ,
125122 fmt::format (FMT_COMPILE (" {0} {1} {2} {3} {4} {5}" ), true , 42 , 42 .0f ,
126123 " foo" , reinterpret_cast <void *>(0x1234 ), test_formattable ()));
127- EXPECT_EQ (L" 42" , fmt::format (FMT_COMPILE (L" {0}" ), 42 ));
128124}
129125
130126TEST (compile_test, named) {
@@ -318,7 +314,6 @@ TEST(compile_test, compile_format_string_literal) {
318314 using namespace fmt ::literals;
319315 EXPECT_EQ (" " , fmt::format (" " _cf));
320316 EXPECT_EQ (" 42" , fmt::format (" {}" _cf, 42 ));
321- EXPECT_EQ (L" 42" , fmt::format (L" {}" _cf, 42 ));
322317}
323318#endif
324319
0 commit comments