summaryrefslogtreecommitdiffstats
path: root/api/user_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/user_test.go')
-rw-r--r--api/user_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/user_test.go b/api/user_test.go
index 8e15029ca..2a3a3c830 100644
--- a/api/user_test.go
+++ b/api/user_test.go
@@ -462,7 +462,7 @@ func TestUserUpdate(t *testing.T) {
user := &model.User{TeamId: team.Id, Email: strings.ToLower(model.NewId()) + "corey@test.com", FullName: "Corey Hulen", Password: "pwd", LastActivityAt: time1, LastPingAt: time1, Roles: ""}
user = Client.Must(Client.CreateUser(user, "")).Data.(*model.User)
- <-<-Srv.Store.User().VerifyEmail(user.Id)
+ <-Srv.Store.User().VerifyEmail(user.Id)
if _, err := Client.UpdateUser(user); err == nil {
t.Fatal("Should have errored")