Skip to content

Commit b1e17ad

Browse files
author
Sriya Pratipati
committed
fixed formatting
1 parent 82bff49 commit b1e17ad

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libc/test/src/__support/wchar/utf8_to_32_test.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,8 @@ TEST(LlvmLibcCharacterConverterUTF8To32Test, InvalidPop) {
185185
int err = char_conv.push(static_cast<char8_t>(ch[0]));
186186
ASSERT_EQ(err, 0);
187187
auto wch = char_conv.pop_utf32();
188-
ASSERT_FALSE(wch.has_value()); // Should fail since we have not read enough bytes
188+
ASSERT_FALSE(
189+
wch.has_value()); // Should fail since we have not read enough bytes
189190
err = char_conv.push(static_cast<char8_t>(ch[1]));
190191
ASSERT_EQ(err, 0);
191192
wch = char_conv.pop_utf32();

0 commit comments

Comments
 (0)