summaryrefslogtreecommitdiff
path: root/aoc24/build.zig
diff options
context:
space:
mode:
Diffstat (limited to 'aoc24/build.zig')
-rw-r--r--aoc24/build.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/aoc24/build.zig b/aoc24/build.zig
index 2d5946f..4648193 100644
--- a/aoc24/build.zig
+++ b/aoc24/build.zig
@@ -58,7 +58,7 @@ pub fn build(b: *std.Build) void {
// Similar to creating the run step earlier, this exposes a `test` step to
// the `zig build --help` menu, providing a way for the user to request
// running the unit tests.
- const test_step = b.step(b.fmt("test-{s}", .{name}), b.fmt("Test {s}", .{name}));
+ const test_step = b.step(b.fmt("{s}-test", .{name}), b.fmt("Test {s}", .{name}));
test_step.dependOn(&run_exe_unit_tests.step);
};
}