Skip to content

Commit 3349abc

Browse files
committed
test formatting cleanup
1 parent 515c521 commit 3349abc

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ test: mod ## Tests the entire project
1515
service: mod ## Runs the uncompiled example service code
1616
dapr run --app-id serving \
1717
--protocol grpc \
18-
--app-port 50001 \
19-
go run example/serving/main.go
18+
--app-port 50001 \
19+
go run example/serving/main.go
2020

2121
client: mod ## Runs the uncompiled example client code
2222
dapr run --app-id caller \
23-
--components-path example/client/comp \
24-
go run example/client/main.go
23+
--components-path example/client/comp \
24+
go run example/client/main.go
2525

2626
lint: ## Lints the entire project
2727
golangci-lint run --timeout=3m

client/client_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ func getTestClient(ctx context.Context, t *testing.T) (client Client, closer fun
5454
return l.Dial()
5555
})
5656

57-
c, err := grpc.DialContext(ctx, "bufnet", d, grpc.WithInsecure())
57+
c, err := grpc.DialContext(ctx, "", d, grpc.WithInsecure())
5858
if err != nil {
59-
t.Fatalf("failed to dial bufnet: %v", err)
59+
t.Fatalf("failed to dial test context: %v", err)
6060
}
6161

6262
closer = func() {

0 commit comments

Comments
 (0)