From 35f18e584fae890f686eafcdc12a2fde6281206d Mon Sep 17 00:00:00 2001 From: Sam Atman Date: Tue, 29 Apr 2025 15:32:58 -0400 Subject: Add general tests step After a considerable slog, all tests are reachable from the test step, and pass. Almost every failure was related to the change away from the inclusion of an allocator on this or that. --- src/grapheme.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/grapheme.zig') diff --git a/src/grapheme.zig b/src/grapheme.zig index a802df8..25fd71d 100644 --- a/src/grapheme.zig +++ b/src/grapheme.zig @@ -307,7 +307,7 @@ test "Segmentation ZWJ and ZWSP emoji sequences" { const no_joiner = seq_1 ++ seq_2; const data = try GraphemeData.init(std.testing.allocator); - defer data.deinit(); + defer data.deinit(std.testing.allocator); { var iter = Iterator.init(with_zwj, &data); -- cgit v1.2.3