From 324b18853c2fa687f39712379905501229e9b271 Mon Sep 17 00:00:00 2001 From: Ubuntu Date: Mon, 4 Dec 2023 19:28:18 +0000 Subject: [PATCH] fix test --- node/grpc/server_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/node/grpc/server_test.go b/node/grpc/server_test.go index 4296147bb1..57606cde04 100644 --- a/node/grpc/server_test.go +++ b/node/grpc/server_test.go @@ -94,6 +94,7 @@ func newTestServer(t *testing.T, mockValidator bool) *grpc.Server { if mockValidator { mockVal := core_mock.NewMockChunkValidator() mockVal.On("ValidateBlob", mock.Anything, mock.Anything).Return(nil) + mockVal.On("ValidateBatch", mock.Anything, mock.Anything).Return(nil) val = mockVal } else {