Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
cmwaters committed Sep 18, 2024
1 parent 1e36681 commit e9ff46c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/chainbuilder/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func TestRun(t *testing.T) {
require.NoError(t, err)

require.NoError(t, cometNode.Start())
defer cometNode.Stop()
defer func() { _ = cometNode.Stop() }()

client := local.New(cometNode)
status, err := client.Status(context.Background())
Expand All @@ -99,4 +99,5 @@ func TestRun(t *testing.T) {
require.NoError(t, err)
return status.SyncInfo.LatestBlockHeight >= int64(numBlocks*2)
}, time.Second*10, time.Millisecond*100)
require.NoError(t, cometNode.Stop())
}

0 comments on commit e9ff46c

Please sign in to comment.