aboutsummaryrefslogtreecommitdiff
path: root/test/tests.zig
diff options
context:
space:
mode:
authorManlio Perillo <[email protected]>2023-04-09 18:48:19 +0200
committerManlio Perillo <[email protected]>2023-04-11 12:45:55 +0200
commit647a24afae436d9d10ff731c7110448d6be00ccf (patch)
tree0fcae467cc24fd0e2b9cb9008b5e3ad6c19b6fc2 /test/tests.zig
parentc656536d3f322be31fffd88daa9a43683b11f693 (diff)
downloadziglings-647a24afae436d9d10ff731c7110448d6be00ccf.tar.xz
ziglings-647a24afae436d9d10ff731c7110448d6be00ccf.zip
build: improve PrintStep, SkipStep and PatchStep names
Use lover case for the step names. Add the exercise name for the SkipStep and PatchStep step name.
Diffstat (limited to 'test/tests.zig')
-rw-r--r--test/tests.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tests.zig b/test/tests.zig
index 3de42db..c8f4af2 100644
--- a/test/tests.zig
+++ b/test/tests.zig
@@ -109,7 +109,7 @@ const PatchStep = struct {
self.* = .{
.step = Step.init(.{
.id = .custom,
- .name = "Patch",
+ .name = owner.fmt("patch {s}", .{exercise.main_file}),
.owner = owner,
.makeFn = make,
}),