aboutsummaryrefslogtreecommitdiff
path: root/lib/std/wasm.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2024-02-26 23:43:02 -0800
committerGitHub <noreply@github.com>2024-02-26 23:43:02 -0800
commit085bde6889925b486291ddf1450b6bb6c8562a8f (patch)
tree02f7a49b4378dc2387b825bfc19825405f4502ca /lib/std/wasm.zig
parent4e2570baafb587c679ee0fc5e113ddeb36522a5d (diff)
parent726a1149e05669e5cc05a16ce877bbb2be787e39 (diff)
downloadzig-085bde6889925b486291ddf1450b6bb6c8562a8f.tar.gz
zig-085bde6889925b486291ddf1450b6bb6c8562a8f.zip
Merge pull request #19087 from squeek502/redundant-test-naming
Remove redundant test name prefixes now that test names are fully qualified
Diffstat (limited to 'lib/std/wasm.zig')
-rw-r--r--lib/std/wasm.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/std/wasm.zig b/lib/std/wasm.zig
index 07b8155b76..8996a174f1 100644
--- a/lib/std/wasm.zig
+++ b/lib/std/wasm.zig
@@ -201,7 +201,7 @@ pub fn opcode(op: Opcode) u8 {
return @intFromEnum(op);
}
-test "Wasm - opcodes" {
+test "opcodes" {
// Ensure our opcodes values remain intact as certain values are skipped due to them being reserved
const i32_const = opcode(.i32_const);
const end = opcode(.end);
@@ -625,7 +625,7 @@ pub fn reftype(value: RefType) u8 {
return @intFromEnum(value);
}
-test "Wasm - valtypes" {
+test "valtypes" {
const _i32 = valtype(.i32);
const _i64 = valtype(.i64);
const _f32 = valtype(.f32);