Skip to content

Commit

Permalink
respond to some feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
alecps committed Sep 16, 2024
1 parent f8a3aac commit 8a28788
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions e2e_test/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -383,14 +383,14 @@ func runStopNetworkAtL2BlockTest(ctx context.Context, t *testing.T, network test
wg.Add(1)
go func(n *test.Node) {
defer wg.Done()
err = n.Tracker.AwaitBlock(shortCtx, l2Block.Uint64())
err := n.Tracker.AwaitBlock(shortCtx, l2Block.Uint64())
require.EqualError(t, err, context.DeadlineExceeded.Error())
}(n)
}
wg.Wait()
}

func TestStopNetworkAtl2BlockSimple(t *testing.T) {
func TestStopNetworkAtL2BlockSimple(t *testing.T) {
numValidators := 3
numFullNodes := 2
numFastNodes := 1
Expand Down

0 comments on commit 8a28788

Please sign in to comment.