Skip to content

Commit 9186750

Browse files
committed
Remove more invalid tests
1 parent a6fb4d3 commit 9186750

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

test/compile-test.cc

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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

9794
TEST(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

130126
TEST(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

Comments
 (0)