Skip to content

Commit

Permalink
api: fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Francisco Souza committed Aug 1, 2014
1 parent 50e43e0 commit b220f4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/auth_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ func (s *AuthSuite) TestCreateTeamHandlerReturnConflictIfTheTeamToBeCreatedAlrea
e, ok := err.(*errors.HTTP)
c.Assert(ok, gocheck.Equals, true)
c.Assert(e.Code, gocheck.Equals, http.StatusConflict)
c.Assert(e, gocheck.ErrorMatches, "^Team already exists$")
c.Assert(e, gocheck.ErrorMatches, "^team already exists$")
}

func (s *AuthSuite) TestRemoveTeam(c *gocheck.C) {
Expand Down

0 comments on commit b220f4e

Please sign in to comment.