Skip to content

Commit 156c3e1

Browse files
committed
update default chain id in tests
1 parent 8e2b9b0 commit 156c3e1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

multinode/send_only_node_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ func TestStartSendOnlyNode(t *testing.T) {
5555
tests.AssertEventually(t, func() bool { return s.State() == nodeStateUnusable })
5656
tests.RequireLogMessage(t, observedLogs, "Dial failed: SendOnly Node is unusable")
5757
})
58-
t.Run("Default ChainID(0) produces warn and skips checks", func(t *testing.T) {
58+
t.Run("Default ChainID(1399100) produces warn and skips checks", func(t *testing.T) {
5959
t.Parallel()
6060
lggr, observedLogs := logger.TestObserved(t, zap.WarnLevel)
6161
client := newMockSendOnlyClient[ID](t)
6262
client.On("Close").Once()
6363
client.On("Dial", mock.Anything).Return(nil).Once()
64-
s := NewSendOnlyNode(lggr, url.URL{}, t.Name(), NewIDFromInt(0), client)
64+
s := NewSendOnlyNode(lggr, url.URL{}, t.Name(), NewIDFromInt(1399100), client)
6565

6666
defer func() { assert.NoError(t, s.Close()) }()
6767
err := s.Start(tests.Context(t))

0 commit comments

Comments
 (0)