From f9865765c678fadbc0cf1dbe865b0844684ff266 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Tue, 10 Feb 2026 21:15:52 -0600 Subject: [PATCH] fix test names for script.wasm --- internal/processor/test/script-wasm_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/processor/test/script-wasm_test.go b/internal/processor/test/script-wasm_test.go index 886ee4b..3188597 100644 --- a/internal/processor/test/script-wasm_test.go +++ b/internal/processor/test/script-wasm_test.go @@ -38,7 +38,7 @@ func TestGoodScriptWASM(t *testing.T) { expected []byte }{ { - name: "number", + name: "string input, default process function with wasi", params: map[string]any{ "path": "good.wasm", "enableWasi": true, @@ -47,7 +47,7 @@ func TestGoodScriptWASM(t *testing.T) { expected: []byte("Processed: hello"), }, { - name: "number", + name: "string input, specified function with wasi", params: map[string]any{ "path": "good.wasm", "enableWasi": true,