make sure to pass groups for all credentials while verifying policies (#14193)

fixes #14180
This commit is contained in:
Harshavardhana
2022-01-26 21:53:36 -08:00
committed by GitHub
parent a66071099c
commit d6dd17a483
4 changed files with 14 additions and 9 deletions
+1 -1
View File
@@ -149,7 +149,7 @@ func TestWebRequestAuthenticate(t *testing.T) {
}
for i, testCase := range testCases {
_, _, gotErr := webRequestAuthenticate(testCase.req)
_, _, _, gotErr := webRequestAuthenticate(testCase.req)
if testCase.expectedErr != gotErr {
t.Errorf("Test %d, expected err %s, got %s", i+1, testCase.expectedErr, gotErr)
}