Test/LibTextCodec: Remove noisy test debug log
This commit is contained in:
parent
73ec316214
commit
c907338ab3
1 changed files with 1 additions and 1 deletions
|
|
@ -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++) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue