diff --git a/authority/provisioner/provisioner_test.go b/authority/provisioner/provisioner_test.go index 39ce2e2e..bf99aa76 100644 --- a/authority/provisioner/provisioner_test.go +++ b/authority/provisioner/provisioner_test.go @@ -109,6 +109,13 @@ func TestDefaultIdentityFunc(t *testing.T) { identity: &Identity{Usernames: []string{"john", "John@smallstep.com"}}, } }, + "ok symbol": func(t *testing.T) test { + return test{ + p: &OIDC{}, + email: "John+Doe@smallstep.com", + identity: &Identity{Usernames: []string{"john_doe", "John+Doe", "John+Doe@smallstep.com"}}, + } + }, } for name, get := range tests { t.Run(name, func(t *testing.T) {