From 8653f4ccb85de3faf29b611f3a76675e2b539c85 Mon Sep 17 00:00:00 2001 From: byhsu Date: Tue, 9 May 2023 11:04:49 -0700 Subject: [PATCH] lint Signed-off-by: byhsu --- auth/interceptor_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/auth/interceptor_test.go b/auth/interceptor_test.go index 561738768..fd01bbe52 100644 --- a/auth/interceptor_test.go +++ b/auth/interceptor_test.go @@ -74,5 +74,6 @@ func TestGetUserIdentityFromContext(t *testing.T) { return nil, nil } - UserIdentifierInterceptor(ctx, nil, nil, handler) + _, err := UserIdentifierInterceptor(ctx, nil, nil, handler) + assert.NoError(t, err) }