From 9ab634de5ab55804eb193762c9faa5447a4b5e20 Mon Sep 17 00:00:00 2001 From: Michael Schurter Date: Fri, 18 Oct 2024 13:37:53 -0700 Subject: [PATCH] fix grpc test --- grpc_client_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grpc_client_test.go b/grpc_client_test.go index a7800a5a..3ce24ee1 100644 --- a/grpc_client_test.go +++ b/grpc_client_test.go @@ -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)