Test/LibTextCodec: Remove noisy test debug log

This commit is contained in:
Shannon Booth 2026-06-19 23:58:35 +02:00 committed by Andreas Kling
parent 73ec316214
commit c907338ab3

View file

@ -161,7 +161,7 @@ TEST_CASE(test_windows1252_encoder)
Vector<u8> 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<void> { EXPECT(false); return {}; }));
EXPECT(processed_bytes.size() == 20);
for (u8 i = 0; i < 15; i++) {