From f5044affc6852ea7ea70af1072d0d81e8a2feff7 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Wed, 1 Nov 2023 11:51:08 +0100 Subject: [PATCH] Fix flaky history vector test Signed-off-by: Steffen Vogel --- internal/history/history.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/history/history.go b/internal/history/history.go index e9cd12d..63baae9 100644 --- a/internal/history/history.go +++ b/internal/history/history.go @@ -23,6 +23,7 @@ func (h *HelloHistory) Reset() { defer h.mu.Unlock() h.vector = 0 + h.expectedSeqno = 0 } func (h *HelloHistory) Empty() bool {