Skip to content

Commit

Permalink
fix grpc test
Browse files Browse the repository at this point in the history
  • Loading branch information
schmichael committed Oct 18, 2024
1 parent 0c4f564 commit 9ab634d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grpc_client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ func testGRPCClientReflection(t *testing.T, multiplex bool) {
}

// TODO: maybe only assert some specific services here to make test more resilient
expectedSvcs := []string{"grpc.health.v1.Health", "grpc.reflection.v1alpha.ServerReflection", "grpctest.Test", "plugin.GRPCBroker", "plugin.GRPCController", "plugin.GRPCStdio"}
expectedSvcs := []string{"grpc.health.v1.Health", "grpc.reflection.v1.ServerReflection", "grpc.reflection.v1alpha.ServerReflection", "grpctest.Test", "plugin.GRPCBroker", "plugin.GRPCController", "plugin.GRPCStdio"}

if !reflect.DeepEqual(svcs, expectedSvcs) {
t.Fatalf("expected: %v\ngot: %v", expectedSvcs, svcs)
Expand Down

0 comments on commit 9ab634d

Please sign in to comment.