summaryrefslogtreecommitdiff
path: root/src/unicode_tests.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/unicode_tests.zig')
-rw-r--r--src/unicode_tests.zig3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/unicode_tests.zig b/src/unicode_tests.zig
index 7ce2b4e..59f0c6f 100644
--- a/src/unicode_tests.zig
+++ b/src/unicode_tests.zig
@@ -228,8 +228,7 @@ test "Segmentation Word Iterator" {
228 // Check. 228 // Check.
229 for (want.items, 1..) |want_word, i| { 229 for (want.items, 1..) |want_word, i| {
230 const got_word = (iter.next()).?; 230 const got_word = (iter.next()).?;
231 std.testing.expectEqualSlices( 231 std.testing.expectEqualStrings(
232 u8,
233 want_word.bytes(all_bytes.items), 232 want_word.bytes(all_bytes.items),
234 got_word.bytes(all_bytes.items), 233 got_word.bytes(all_bytes.items),
235 ) catch |err| { 234 ) catch |err| {