protoio: fix incorrect test assertion (#7606)

After writing and then reading a bunch of random messages, the test was
checking that it did not read the same number of messages that it wrote.
The sense of this check was inverted; they should match.

Introduced by accident in #7522. I'm not sure why this did not show up in CI.

Edit: I now know why it didn't show up in ci: #7608.
This commit is contained in:
M. J. Fromberger
2022-01-16 12:39:37 -08:00
committed by GitHub
parent 701e6026c5
commit c24f003b55

View File

@@ -95,7 +95,7 @@ func iotest(t *testing.T, writer protoio.WriteCloser, reader protoio.ReadCloser)
}
i++
}
require.NotEqual(t, size, i)
require.Equal(t, size, i, "messages read ≠ messages written")
if err := reader.Close(); err != nil {
return err
}