From a772095a772ff0986689c3c91ea3a875ea6b1ced Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Sat, 17 May 2025 13:08:39 +0200 Subject: [PATCH] cmd/devp2p/internal/ethtest: reword --- cmd/devp2p/internal/ethtest/suite.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/devp2p/internal/ethtest/suite.go b/cmd/devp2p/internal/ethtest/suite.go index a318da6d65..253c0cd214 100644 --- a/cmd/devp2p/internal/ethtest/suite.go +++ b/cmd/devp2p/internal/ethtest/suite.go @@ -541,7 +541,7 @@ func (s *Suite) TestBlockRangeUpdateInvalid(t *utesting.T) { func (s *Suite) TestBlockRangeUpdateFuture(t *utesting.T) { t.Log(`This test sends a BlockRangeUpdate that is beyond the chain head. -The node should accept this and should not disonnect.`) +The node should accept the update and should not disonnect.`) conn, err := s.dialAndPeer(nil) if err != nil { t.Fatal(err) @@ -577,7 +577,7 @@ The node should accept this and should not disonnect.`) func (s *Suite) TestBlockRangeUpdateHistoryExp(t *utesting.T) { t.Log(`This test sends a BlockRangeUpdate announcing incomplete (expired) history. -The node should accept this and should not disonnect.`) +The node should accept the update and should not disonnect.`) conn, err := s.dialAndPeer(nil) if err != nil { t.Fatal(err)