authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-08-18 14:23:30-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-08-18 14:23:49-07:00
logcf9f8de661034be1db41e24f3c6a7b1776ba58a2
treec3c13eecf9980dff1e8ba628fc08500210c2d63d
parent10455371416a37da201b6f968d47ffae597ea7ce

update comment in init template

Unit tests are not run from the install step. closes #21123

1 files changed, 1 insertions(+), 1 deletions(-)

lib/init/src/main.zig+1-1
......@@ -27,7 +27,7 @@ test "simple test" {
2727}
2828
2929test "fuzz example" {
30 // Try passing `--fuzz` to `zig build` and see if it manages to fail this test case!
30 // Try passing `--fuzz` to `zig build test` and see if it manages to fail this test case!
3131 const input_bytes = std.testing.fuzzInput(.{});
3232 try std.testing.expect(!std.mem.eql(u8, "canyoufindme", input_bytes));
3333}