Skip to content

Commit

Permalink
Fix short timeout in stream api extension test
Browse files Browse the repository at this point in the history
  • Loading branch information
kralicky committed Sep 13, 2023
1 parent c005887 commit b4160ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/plugins/apis/apiextensions/stream/plugin_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ var _ = Describe("Stream API Extensions Plugin", Ordered, Label("unit"), func()
goto receive
}
Expect(err).To(testutil.MatchStatusCode(codes.DeadlineExceeded, ContainSubstring("stream client discovery timed out")))
case <-time.After(10 * time.Millisecond):
case <-time.After(1 * time.Second):
Fail("stream.Recv() should have returned")
}
})
Expand Down

0 comments on commit b4160ce

Please sign in to comment.