Skip to content

Commit

Permalink
Merge pull request #108 from aerostitch/fix_example
Browse files Browse the repository at this point in the history
Cosmetics: Fix example typo
  • Loading branch information
liggitt authored Mar 5, 2017
2 parents 3ed1cc0 + d91065a commit 13cedcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ func Example_userAuthentication() {
searchRequest := ldap.NewSearchRequest(
"dc=example,dc=com",
ldap.ScopeWholeSubtree, ldap.NeverDerefAliases, 0, 0, false,
fmt.Sprintf("(&(objectClass=organizationalPerson)&(uid=%s))", username),
fmt.Sprintf("(&(objectClass=organizationalPerson)(uid=%s))", username),
[]string{"dn"},
nil,
)
Expand Down

0 comments on commit 13cedcf

Please sign in to comment.