diff options
| author | Chris Boesch <[email protected]> | 2024-06-08 16:31:06 +0000 |
|---|---|---|
| committer | Chris Boesch <[email protected]> | 2024-06-08 16:31:06 +0000 |
| commit | 7f78701d199be38809303d26b29d8a636cbcd201 (patch) | |
| tree | d81ea56d728cee104060c143b6f7ca9d01039a5f /test/tests.zig | |
| parent | 6223dc0f83cb903ad259aacfb4eb2e4e50eab9b0 (diff) | |
| parent | 5c9b9bdc343f8960b16ac6d219274759396cfe64 (diff) | |
| download | ziglings-7f78701d199be38809303d26b29d8a636cbcd201.tar.xz ziglings-7f78701d199be38809303d26b29d8a636cbcd201.zip | |
Merge branch 'main' into grammar
Diffstat (limited to 'test/tests.zig')
| -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)); |
