| ... | @@ -113,10 +113,7 @@ fn testWithAllSupportedPathTypes(test_func: anytype) !void { | ... | @@ -113,10 +113,7 @@ fn testWithAllSupportedPathTypes(test_func: anytype) !void { |
| 113 | var ctx = TestContext.init(path_type, testing.allocator, path_type.getTransformFn()); | 113 | var ctx = TestContext.init(path_type, testing.allocator, path_type.getTransformFn()); |
| 114 | defer ctx.deinit(); | 114 | defer ctx.deinit(); |
| 115 | | 115 | |
| 116 | test_func(&ctx) catch |err| { | 116 | try test_func(&ctx); |
| 117 | std.debug.print("{s}, path type: {s}\n", .{ @errorName(err), enum_field.name }); | | |
| 118 | return err; | | |
| 119 | }; | | |
| 120 | } | 117 | } |
| 121 | } | 118 | } |
| 122 | | 119 | |