Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
felipemadero committed Oct 15, 2024
1 parent e2da066 commit ba267a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion local/node_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ func TestAttachPeer(t *testing.T) {
requestID := uint32(42)
chainID := constants.PlatformChainID
// create the Chits message
msg, err := mc.Chits(chainID, requestID, preferredID, preferredIDAtHeight, acceptedID)
msg, err := mc.Chits(chainID, requestID, preferredID, preferredIDAtHeight, acceptedID, 0)
require.NoError(err)
// send chits to [node]
ok := p.Send(context.Background(), msg)
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ var _ = ginkgo.Describe("[Start/Remove/Restart/Add/Stop]", func() {
acceptedID := ids.GenerateTestID()
requestID := uint32(42)
chainID := avago_constants.PlatformChainID
msg, err := mc.Chits(chainID, requestID, preferredID, preferredIDAtHeight, acceptedID)
msg, err := mc.Chits(chainID, requestID, preferredID, preferredIDAtHeight, acceptedID, 0)
gomega.Ω(err).Should(gomega.BeNil())

ctx, cancel = context.WithTimeout(context.Background(), 15*time.Second)
Expand Down

0 comments on commit ba267a3

Please sign in to comment.