From c907338ab345e14511061dac53a014d63bb0bd47 Mon Sep 17 00:00:00 2001 From: Shannon Booth Date: Fri, 19 Jun 2026 23:58:35 +0200 Subject: [PATCH] Test/LibTextCodec: Remove noisy test debug log --- Tests/LibTextCodec/TestTextEncoders.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/LibTextCodec/TestTextEncoders.cpp b/Tests/LibTextCodec/TestTextEncoders.cpp index 11fdcfe89d..3c0ffc24f2 100644 --- a/Tests/LibTextCodec/TestTextEncoders.cpp +++ b/Tests/LibTextCodec/TestTextEncoders.cpp @@ -161,7 +161,7 @@ TEST_CASE(test_windows1252_encoder) Vector processed_bytes; MUST(encoder.process( Utf8View(test_string), - [&](u8 byte) { dbgln("{}", processed_bytes.size()); return processed_bytes.try_append(byte); }, + [&](u8 byte) { return processed_bytes.try_append(byte); }, [&](u32) -> ErrorOr { EXPECT(false); return {}; })); EXPECT(processed_bytes.size() == 20); for (u8 i = 0; i < 15; i++) {