diff options
| author | Chris Boesch <[email protected]> | 2024-05-29 19:29:56 +0000 |
|---|---|---|
| committer | Chris Boesch <[email protected]> | 2024-05-29 19:29:56 +0000 |
| commit | 227bcb18dbfdde1b358aa8d047f03f33961ad2ca (patch) | |
| tree | ed429f955311dac9ee9688388cd75c6a60b22e4a /test | |
| parent | 776316e60ba6b9500969c3d0b6f63865af3cb92d (diff) | |
| parent | b224ed510eb3277c9b6b80412eb615cb27b0eeef (diff) | |
| download | ziglings-227bcb18dbfdde1b358aa8d047f03f33961ad2ca.tar.xz ziglings-227bcb18dbfdde1b358aa8d047f03f33961ad2ca.zip | |
Merge pull request 'Fixed the changes from reworking std.Progress.' (#101) from v339 into main
Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/101
Diffstat (limited to 'test')
| -rw-r--r-- | test/tests.zig | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/tests.zig b/test/tests.zig index 5ee5365..126a1cd 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -150,7 +150,7 @@ const CheckNamedStep = struct { return self; } - fn make(step: *Step, _: *std.Progress.Node) !void { + fn make(step: *Step, _: std.Progress.Node) !void { const b = step.owner; const self: *CheckNamedStep = @alignCast(@fieldParentPtr("step", step)); const ex = self.exercise; @@ -202,7 +202,7 @@ const CheckStep = struct { return self; } - fn make(step: *Step, _: *std.Progress.Node) !void { + fn make(step: *Step, _: std.Progress.Node) !void { const b = step.owner; const self: *CheckStep = @alignCast(@fieldParentPtr("step", step)); const exercises = self.exercises; @@ -325,7 +325,7 @@ const FailStep = struct { return self; } - fn make(step: *Step, _: *std.Progress.Node) !void { + fn make(step: *Step, _: std.Progress.Node) !void { const b = step.owner; const self: *FailStep = @alignCast(@fieldParentPtr("step", step)); @@ -368,7 +368,7 @@ const HealStep = struct { return self; } - fn make(step: *Step, _: *std.Progress.Node) !void { + fn make(step: *Step, _: std.Progress.Node) !void { const b = step.owner; const self: *HealStep = @alignCast(@fieldParentPtr("step", step)); |
