Skip to content

Commit

Permalink
fix: grpc server test fail because of new grpc server start
Browse files Browse the repository at this point in the history
  • Loading branch information
ShohamBit committed Jan 15, 2025
1 parent 221d066 commit a1b0276
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions pkg/server/grpc/server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,7 @@ func TestServer(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()

grpcServer, err := New("unix", unixSock)
if err != nil {
t.Fatal(err)
}
grpcServer := New("unix", unixSock)

go grpcServer.Start(ctx, nil, nil)

Expand Down

0 comments on commit a1b0276

Please sign in to comment.