From: Damien Neil Date: Wed, 26 May 2021 22:44:46 +0000 (-0700) Subject: src/os: revert accidentally submitted change X-Git-Tag: go1.17beta1~88 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a62c08734f;p=gostls13.git src/os: revert accidentally submitted change Change-Id: Ib34984a6bd0abc76266e8aac96f9f8ad8ae21d17 Reviewed-on: https://go-review.googlesource.com/c/go/+/322894 Trust: Damien Neil Run-TryBot: Damien Neil Run-TryBot: Ian Lance Taylor Reviewed-by: Ian Lance Taylor --- diff --git a/src/os/pipe_test.go b/src/os/pipe_test.go index b3d5380b8d..b663618502 100644 --- a/src/os/pipe_test.go +++ b/src/os/pipe_test.go @@ -462,7 +462,7 @@ func TestFdReadRace(t *testing.T) { // Give the other goroutine a chance to enter the Read. // It doesn't matter if this occasionally fails, the test // will still pass, it just won't test anything. - //time.Sleep(10 * time.Millisecond) + time.Sleep(10 * time.Millisecond) r.Fd() // The bug was that Fd would hang until Read timed out.