Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
increase the threshold for the receive stream deadline test
  • Loading branch information
marten-seemann committed Sep 11, 2020
1 parent 9a20621 commit 00861bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion receive_stream_test.go
Expand Up @@ -256,7 +256,7 @@ var _ = Describe("Receive Stream", func() {
n, err := strWithTimeout.Read(b)
Expect(err).To(MatchError(errDeadline))
Expect(n).To(BeZero())
Expect(time.Now()).To(BeTemporally("~", deadline, scaleDuration(10*time.Millisecond)))
Expect(time.Now()).To(BeTemporally("~", deadline, scaleDuration(20*time.Millisecond)))
})

It("doesn't unblock if the deadline is changed before the first one expires", func() {
Expand Down

0 comments on commit 00861bd

Please sign in to comment.