Skip to content

Commit

Permalink
fix(lint): making the lint gods happy (#341)
Browse files Browse the repository at this point in the history
Co-authored-by: Gabriel Guerra <[email protected]>
  • Loading branch information
guergabo and Gabriel Guerra committed May 28, 2024
1 parent 16f85b9 commit 936c333
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/app/subsystems/api/grpc/grpc_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func setup() (*grpcTest, error) {
go subsystem.Start(errors)
time.Sleep(100 * time.Millisecond)

conn, err := grpc.Dial("127.0.0.1:5555", grpc.WithTransportCredentials(insecure.NewCredentials()))
conn, err := grpc.NewClient("127.0.0.1:5555", grpc.WithTransportCredentials(insecure.NewCredentials()))
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 936c333

Please sign in to comment.