summaryrefslogtreecommitdiff
path: root/src/CaseFolding.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/CaseFolding.zig')
-rw-r--r--src/CaseFolding.zig15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/CaseFolding.zig b/src/CaseFolding.zig
index 2e53bfa..f63b860 100644
--- a/src/CaseFolding.zig
+++ b/src/CaseFolding.zig
@@ -310,14 +310,13 @@ fn testAllocations(allocator: Allocator) !void {
310 } 310 }
311} 311}
312 312
313// test "Allocation Failures" { 313test "Allocation Failures" {
314// if (true) return error.SkipZigTest; // XXX: remove 314 try testing.checkAllAllocationFailures(
315// try testing.checkAllAllocationFailures( 315 testing.allocator,
316// testing.allocator, 316 testAllocations,
317// testAllocations, 317 .{},
318// .{}, 318 );
319// ); 319}
320// }
321 320
322const std = @import("std"); 321const std = @import("std");
323const builtin = @import("builtin"); 322const builtin = @import("builtin");