Use map[string]struct{} instead of map[string]bool

pull/561/head
Mariano Cano 3 years ago
parent c8eb771a8e
commit 9cc410b308

@ -370,13 +370,13 @@ func DefaultIdentityFunc(ctx context.Context, p Interface, email string, usernam
// SanitizeStringSlices removes duplicated an empty strings.
func SanitizeStringSlices(original []string) []string {
output := []string{}
seen := make(map[string]bool)
seen := make(map[string]struct{})
for _, entry := range original {
if entry == "" {
continue
}
if _, value := seen[entry]; !value {
seen[entry] = true
seen[entry] = struct{}{}
output = append(output, entry)
}
}

@ -129,7 +129,7 @@ func TestDefaultIdentityFunc(t *testing.T) {
return test{
p: &OIDC{},
email: "john@smallstep.com",
usernames: []string{"johnny", "js", ""},
usernames: []string{"johnny", "js", "", "johnny", ""},
identity: &Identity{Usernames: []string{"johnny", "js", "john", "john@smallstep.com"}},
}
},

Loading…
Cancel
Save