diff options
| author | Chris Boesch <[email protected]> | 2024-05-30 14:15:27 +0000 |
|---|---|---|
| committer | Chris Boesch <[email protected]> | 2024-05-30 14:15:27 +0000 |
| commit | c2caf1a32e5289f492302e6a6ed86f46973d0b63 (patch) | |
| tree | 90c5b594afbcc6dbc0dbf5628c48c8e68db075a0 /test | |
| parent | a6d13af0c257701137db0d031d1898fd838fc158 (diff) | |
| parent | 227bcb18dbfdde1b358aa8d047f03f33961ad2ca (diff) | |
| download | ziglings-c2caf1a32e5289f492302e6a6ed86f46973d0b63.tar.xz ziglings-c2caf1a32e5289f492302e6a6ed86f46973d0b63.zip | |
Merge branch 'main' into the-earth
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)); |
