Skip to content

Commit

Permalink
Remove timeout from failing test
Browse files Browse the repository at this point in the history
Unsure why the test passes locally but fails in CI
  • Loading branch information
Chris Moran committed Jul 10, 2023
1 parent 0fd36f5 commit 2d4ce15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/modules/k6/grpc/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1019,7 +1019,7 @@ func TestClient_TlsParameters(t *testing.T) {
initString: codeBlock{code: `var client = new grpc.Client();`},
vuString: codeBlock{
code: fmt.Sprintf(`
client.connect("GRPCBIN_ADDR", { timeout: '5s', tls: { cacerts: ["%s"], cert: "%s", key: "%s", password: "%s" }});
client.connect("GRPCBIN_ADDR", { tls: { cacerts: ["%s"], cert: "%s", key: "%s", password: "%s" }});
`,
localHostCert,
clientAuthBad,
Expand Down

0 comments on commit 2d4ce15

Please sign in to comment.