summaryrefslogtreecommitdiffstats
path: root/api4/apitestlib.go
diff options
context:
space:
mode:
authorJesús Espino <jespinog@gmail.com>2018-02-07 10:42:55 +0100
committerChris <ccbrown112@gmail.com>2018-02-07 03:42:55 -0600
commit121712ce5d61cd0bb35efa5bacd59f7f9daff326 (patch)
tree3b870f9616078801b302901fce8dd544d0bb7b4e /api4/apitestlib.go
parent809a16458f7483a2b762cd546493780fea6220ea (diff)
downloadchat-121712ce5d61cd0bb35efa5bacd59f7f9daff326.tar.gz
chat-121712ce5d61cd0bb35efa5bacd59f7f9daff326.tar.bz2
chat-121712ce5d61cd0bb35efa5bacd59f7f9daff326.zip
Remove fmt.Println trace on api4 tests (#8212)
Diffstat (limited to 'api4/apitestlib.go')
-rw-r--r--api4/apitestlib.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/api4/apitestlib.go b/api4/apitestlib.go
index ccdb4c206..b55ce7cbf 100644
--- a/api4/apitestlib.go
+++ b/api4/apitestlib.go
@@ -302,8 +302,7 @@ func (me *TestHelper) CreateUserWithClient(client *model.Client4) *model.User {
}
utils.DisableDebugLogForTest()
- ruser, r := client.CreateUser(user)
- fmt.Println(r)
+ ruser, _ := client.CreateUser(user)
ruser.Password = "Password1"
store.Must(me.App.Srv.Store.User().VerifyEmail(ruser.Id))
utils.EnableDebugLogForTest()