commit cf9f8de661034be1db41e24f3c6a7b1776ba58a2 (tree)
parent 10455371416a37da201b6f968d47ffae597ea7ce
Author: Andrew Kelley <andrew@ziglang.org>
Date: Sun, 18 Aug 2024 14:23:30 -0700
update comment in init template
Unit tests are not run from the install step.
closes #21123
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/init/src/main.zig b/lib/init/src/main.zig
@@ -27,7 +27,7 @@ test "simple test" {
}
test "fuzz example" {
- // Try passing `--fuzz` to `zig build` and see if it manages to fail this test case!
+ // Try passing `--fuzz` to `zig build test` and see if it manages to fail this test case!
const input_bytes = std.testing.fuzzInput(.{});
try std.testing.expect(!std.mem.eql(u8, "canyoufindme", input_bytes));
}