From c22a9fb8ac021ba39099b140bc983cc725bf98eb Mon Sep 17 00:00:00 2001 From: Jian Xiao Date: Thu, 13 Feb 2025 00:21:21 +0000 Subject: [PATCH] fix --- node/grpc/server_v2_test.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/node/grpc/server_v2_test.go b/node/grpc/server_v2_test.go index 62b8c8f8a6..c30e367a4d 100644 --- a/node/grpc/server_v2_test.go +++ b/node/grpc/server_v2_test.go @@ -155,12 +155,6 @@ func TestV2StoreChunksInputValidation(t *testing.T) { require.NoError(t, err) req := &validator.StoreChunksRequest{ - DisperserID: 10, - } - _, err = c.server.StoreChunks(context.Background(), req) - requireErrorStatusAndMsg(t, err, codes.InvalidArgument, "disperserID is invalid") - - req = &validator.StoreChunksRequest{ DisperserID: 0, } _, err = c.server.StoreChunks(context.Background(), req)