Fix typos in socket_test

PiperOrigin-RevId: 217576188
Change-Id: I82e45c306c5c9161e207311c7dbb8a983820c1df
This commit is contained in:
Ian Gudger 2018-10-17 13:24:52 -07:00 committed by Shentubot
parent 8fa6f6fe76
commit 8c85f5e9ce
1 changed files with 3 additions and 3 deletions

View File

@ -71,18 +71,18 @@ func TestSocketIsBlocking(t *testing.T) {
t.Fatalf("newSocket(%v) failed => %v", pair[0], err)
}
defer sock.DecRef()
// Test that the socket now is non blocking.
// Test that the socket now is non-blocking.
if fl, err = getFl(pair[0]); err != nil {
t.Fatalf("getFl: fcntl(%v, GETFL) => %v", pair[0], err)
}
if fl&syscall.O_NONBLOCK != syscall.O_NONBLOCK {
t.Errorf("Expected socket %v to have becoming non blocking", pair[0])
t.Errorf("Expected socket %v to have become non-blocking", pair[0])
}
if fl, err = getFl(pair[1]); err != nil {
t.Fatalf("getFl: fcntl(%v, GETFL) => %v", pair[1], err)
}
if fl&syscall.O_NONBLOCK == syscall.O_NONBLOCK {
t.Errorf("Did not expect socket %v to become non blocking", pair[1])
t.Errorf("Did not expect socket %v to become non-blocking", pair[1])
}
}