Just check for general error in WAL test
Go 1.9 changed the returned error. Checking the exact message is too fragile.
This commit is contained in:
parent
1b86bbb48a
commit
215a856f34
|
@ -103,7 +103,7 @@ func TestSegmentWAL_cut(t *testing.T) {
|
|||
|
||||
// Cutting creates a new file and close the previous tail file.
|
||||
require.Equal(t, 2, len(w.files))
|
||||
require.Equal(t, os.ErrInvalid.Error(), w.files[0].Close().Error())
|
||||
require.Error(t, w.files[0].Close())
|
||||
|
||||
require.NoError(t, w.entry(WALEntrySeries, 1, []byte("Hello World!!")))
|
||||
|
||||
|
|
Loading…
Reference in New Issue