Commit 2e8bc95a authored by Andreas Bigger's avatar Andreas Bigger

add back err string

parent bb26427b
...@@ -291,7 +291,7 @@ func FuzzSeqWindowZeroTimeoutClose(f *testing.F) { ...@@ -291,7 +291,7 @@ func FuzzSeqWindowZeroTimeoutClose(f *testing.F) {
calculatedTimeout := epochNum + seqWindowSize - subSafetyMargin calculatedTimeout := epochNum + seqWindowSize - subSafetyMargin
cb.checkTimeout(calculatedTimeout) cb.checkTimeout(calculatedTimeout)
if cb.timeout != 0 { if cb.timeout != 0 {
require.ErrorIs(t, cb.FullErr(), ErrSeqWindowClose) require.ErrorIs(t, cb.FullErr(), ErrSeqWindowClose, "Sequence window close should be reached")
} }
}) })
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment