Skip to content

Commit

Permalink
Update references to ldap for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hspak committed May 5, 2017
1 parent 84d7221 commit 199028a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dn_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"reflect"
"testing"

"gopkg.in/ldap.v2"
"github.com/ripple/ldap"
)

func TestSuccessfulDNParsing(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"log"

"gopkg.in/ldap.v2"
"github.com/ripple/ldap"
)

// ExampleConn_Bind demonstrates how to bind a connection to an ldap user
Expand Down
3 changes: 2 additions & 1 deletion filter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ import (
"strings"
"testing"

"github.com/ripple/ldap"

"gopkg.in/asn1-ber.v1"
"gopkg.in/ldap.v2"
)

type compileTest struct {
Expand Down
2 changes: 1 addition & 1 deletion ldap_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"testing"

"gopkg.in/ldap.v2"
"github.com/ripple/ldap"
)

var ldapServer = "ldap.itd.umich.edu"
Expand Down
2 changes: 1 addition & 1 deletion moddn_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package ldap_test
import (
"log"

"gopkg.in/ldap.v2"
"github.com/ripple/ldap"
)

// ExampleConn_ModifyDN_renameNoMove shows how to rename an entry without moving it
Expand Down

0 comments on commit 199028a

Please sign in to comment.