summaryrefslogtreecommitdiff
path: root/test/tests.zig
diff options
context:
space:
mode:
authorbsubei <6508762+bsubei@users.noreply.github.com>2024-07-21 12:23:30 -0400
committerbsubei <6508762+bsubei@users.noreply.github.com>2024-07-21 12:23:30 -0400
commite7dcf0b6ef10944271fea4b677cb2722c632dabd (patch)
tree69e005f9dea9f482673d787fb2f274f419672e66 /test/tests.zig
parente8f09190d6274466380e2c911a4add9d00248c2f (diff)
fix build files broken by latest 0.14.0-dev changes to Build.Step.MakeOptions
Diffstat (limited to 'test/tests.zig')
-rw-r--r--test/tests.zig8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/tests.zig b/test/tests.zig
index 126a1cd..9fed107 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, _: Step.MakeOptions) !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, _: Step.MakeOptions) !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, _: Step.MakeOptions) !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, _: Step.MakeOptions) !void {
const b = step.owner;
const self: *HealStep = @alignCast(@fieldParentPtr("step", step));