Skip to content

Commit

Permalink
wit/testdata_test: change t.Skip to t.Log since Skip is not supported…
Browse files Browse the repository at this point in the history
… in TinyGo

Signed-off-by: Jiaxiao Zhou <[email protected]>
  • Loading branch information
Mossaka committed Dec 15, 2024
1 parent eed5668 commit aba1c33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wit/testdata_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ func TestGoldenWITRoundTrip(t *testing.T) {
ctx := context.Background()
wasmTools, err := wasmtools.New(ctx)
if err != nil {
t.Skipf("wasm-tools not available: %v", err)
t.Logf("wasm-tools not available: %v", err)
return
}

Expand Down

0 comments on commit aba1c33

Please sign in to comment.