core: use std.testing.expectEqualStrings where appropriate

This commit is contained in:
Jeffrey C. Ollie
2025-07-22 13:08:24 -05:00
parent 7eab97653d
commit cc0a688b5d
3 changed files with 9 additions and 9 deletions

View File

@@ -95,7 +95,7 @@ test "ASCII" {
}
}
try testing.expect(std.mem.eql(u8, &out, "Hello, World!"));
try testing.expectEqualStrings(&out, "Hello, World!");
}
test "Well formed utf-8" {