From 0c01b3924d55e0923cf895254b9412c9cedc9047 Mon Sep 17 00:00:00 2001 From: Mathias Magnusson Date: Mon, 2 Dec 2024 15:20:35 +0100 Subject: aoc2024: day 2 --- aoc24/build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'aoc24/build.zig') 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); }; } -- cgit v1.2.3