From f0260b8defcebe7fc787c3c4b4b6298ab1b36d80 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Tue, 28 May 2024 13:19:53 +0200 Subject: [PATCH] p2p/discover: fix lint issue --- p2p/discover/table_reval_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p2p/discover/table_reval_test.go b/p2p/discover/table_reval_test.go index 4b66d27bbf..4ac1cb381d 100644 --- a/p2p/discover/table_reval_test.go +++ b/p2p/discover/table_reval_test.go @@ -43,7 +43,7 @@ func TestRevalidationNodeRemoved(t *testing.T) { // then advance the clock to that point and schedule again to start. next := tr.run(tab, clock.Now()) clock.Run(time.Duration(next + 1)) - next = tr.run(tab, clock.Now()) + tr.run(tab, clock.Now()) if len(tr.activeReq) != 1 { t.Fatal("revalidation request did not start:", tr.activeReq) }