Skip to content

Commit

Permalink
Re-enable nil-error check on TestReadPipe.
Browse files Browse the repository at this point in the history
  • Loading branch information
lthibault committed Sep 15, 2024
1 parent 4be09d5 commit 2113a67
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions system/socket_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ func TestReadPipe(t *testing.T) {
defer release()

res, err = f.Struct()
// require.EqualError(t, err, "auth.capnp:ReadPipe.read: EOF")
// require.NoError(t, err)
require.NoError(t, err)
require.True(t, res.Eof(), "should report EOF")
}

Expand Down

0 comments on commit 2113a67

Please sign in to comment.