diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2023-04-21 20:46:05 -0400 |
|---|---|---|
| committer | Jacob Young <jacobly0@users.noreply.github.com> | 2023-04-21 23:08:48 -0400 |
| commit | 3f1c51ca906719fe2a064a73295ada230e34f1c2 (patch) | |
| tree | 729f9ef62d288efb160e4783a5b2dd1ef00dc698 /lib/std/hash.zig | |
| parent | 08a8aa100d73bd87e6c39563d8f5c6186217afb3 (diff) | |
| download | zig-3f1c51ca906719fe2a064a73295ada230e34f1c2.tar.gz zig-3f1c51ca906719fe2a064a73295ada230e34f1c2.zip | |
std: remove names from incorrectly named tests
Tests that only reference decls for the purpose of analyzing more tests
should be unnamed, otherwise trying to filter for just a referenced test
can become impossible depending on the names.
Diffstat (limited to 'lib/std/hash.zig')
| -rw-r--r-- | lib/std/hash.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/hash.zig b/lib/std/hash.zig index 8e92b4c9de..5c85b38d55 100644 --- a/lib/std/hash.zig +++ b/lib/std/hash.zig @@ -36,7 +36,7 @@ const xxhash = @import("hash/xxhash.zig"); pub const XxHash64 = xxhash.XxHash64; pub const XxHash32 = xxhash.XxHash32; -test "hash" { +test { _ = adler; _ = auto_hash; _ = crc; |
