Skip to content

Commit

Permalink
Fix SCRAM-SHA-256 URI test
Browse files Browse the repository at this point in the history
  • Loading branch information
mhill-anynines committed Oct 8, 2018
1 parent cb5706b commit cee0d26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auth_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -922,7 +922,7 @@ func (s *S) TestAuthScramSha256URL(c *C) {
}
host := "localhost:40002"
c.Logf("Connecting to %s...", host)
session, err := mgo.Dial(fmt.Sprintf("root:rapadura@%s?authMechanism=SCRAM-SHA-1", host))
session, err := mgo.Dial(fmt.Sprintf("root:rapadura@%s?authMechanism=SCRAM-SHA-256", host))
c.Assert(err, IsNil)
defer session.Close()

Expand Down

0 comments on commit cee0d26

Please sign in to comment.