increase the threshold for the receive stream deadline test

This commit is contained in:
Marten Seemann 2020-09-11 17:10:16 +07:00
parent 9a2062144e
commit 00861bde7f

View file

@ -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() {