summaryrefslogtreecommitdiffstats
path: root/api/team_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/team_test.go')
-rw-r--r--api/team_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/team_test.go b/api/team_test.go
index 5720f71d7..c4a0fbefb 100644
--- a/api/team_test.go
+++ b/api/team_test.go
@@ -45,7 +45,7 @@ func TestCreateTeam(t *testing.T) {
rteam.Data.(*model.Team).Id = ""
if _, err := Client.CreateTeam(rteam.Data.(*model.Team)); err != nil {
- if err.Message != "A team with that domain already exists" {
+ if err.Message != "A team with that name already exists" {
t.Fatal(err)
}
}