From dab5ff3788297a6af05202ef6032567078e24e30 Mon Sep 17 00:00:00 2001 From: Ryan Richard Date: Mon, 17 May 2021 14:21:57 -0700 Subject: [PATCH] ldap_client_test.go: Forgot to change an assertion related to groups --- test/integration/ldap_client_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/ldap_client_test.go b/test/integration/ldap_client_test.go index b8e799796..15ce8c09c 100644 --- a/test/integration/ldap_client_test.go +++ b/test/integration/ldap_client_test.go @@ -525,7 +525,7 @@ func TestSimultaneousRequestsOnSingleProvider(t *testing.T) { require.NoError(t, result.err) require.True(t, result.authenticated, "expected the user to be authenticated, but they were not") require.Equal(t, &authenticator.Response{ - User: &user.DefaultInfo{Name: "pinny", UID: "1000", Groups: []string{}}, + User: &user.DefaultInfo{Name: "pinny", UID: "1000", Groups: []string{"ball-game-players", "seals"}}, }, result.response) } }