From 1e99538c433d0aa0d74a2b44bb9f6675bc2a77fa Mon Sep 17 00:00:00 2001 From: Ronen Hilewicz Date: Thu, 12 Sep 2024 16:47:01 -0400 Subject: [PATCH] Reenable test that was commented out --- middleware/grpcz/interceptor_test.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/middleware/grpcz/interceptor_test.go b/middleware/grpcz/interceptor_test.go index 4496a8e..8c69c97 100644 --- a/middleware/grpcz/interceptor_test.go +++ b/middleware/grpcz/interceptor_test.go @@ -47,11 +47,11 @@ func NewTest(t *testing.T, name string, options *testOptions) *TestCase { func TestAuthorizer(t *testing.T) { tests := []*TestCase{ - // NewTest( - // t, - // "authorized decisions should succeed", - // &testOptions{}, - // ), + NewTest( + t, + "authorized decisions should succeed", + &testOptions{}, + ), NewTest( t, "unauthorized decisions should err",