Skip to content

Commit 6979396

Browse files
committed
Skip passing os.Envrion() to wasmbrowsertest in TestWasm
1 parent 418f92e commit 6979396

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conn_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ func TestWasm(t *testing.T) {
364364
defer cancel()
365365

366366
cmd := exec.CommandContext(ctx, "go", "test", "-exec=wasmbrowsertest", ".", "-v")
367-
cmd.Env = append(os.Environ(), "GOOS=js", "GOARCH=wasm", fmt.Sprintf("WS_ECHO_SERVER_URL=%v", s.URL))
367+
cmd.Env = append([]string{}, "GOOS=js", "GOARCH=wasm", fmt.Sprintf("WS_ECHO_SERVER_URL=%v", s.URL))
368368

369369
b, err := cmd.CombinedOutput()
370370
if err != nil {

0 commit comments

Comments
 (0)