summaryrefslogtreecommitdiffstats
path: root/manualtesting
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2016-01-20 08:33:26 -0600
committer=Corey Hulen <corey@hulen.com>2016-01-20 08:33:26 -0600
commit5b2ec623473abeb44577fbfc9122b792a94a5184 (patch)
treee79a434a7fe9e91f2f7b6a3a0fc4d90cf470c306 /manualtesting
parentca33812cb5b83dba0babc244fdf101c78abc046a (diff)
downloadchat-5b2ec623473abeb44577fbfc9122b792a94a5184.tar.gz
chat-5b2ec623473abeb44577fbfc9122b792a94a5184.tar.bz2
chat-5b2ec623473abeb44577fbfc9122b792a94a5184.zip
PLT-7 adding loc db calls for team table
Diffstat (limited to 'manualtesting')
-rw-r--r--manualtesting/manual_testing.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/manualtesting/manual_testing.go b/manualtesting/manual_testing.go
index befc835fb..c1e474027 100644
--- a/manualtesting/manual_testing.go
+++ b/manualtesting/manual_testing.go
@@ -70,7 +70,7 @@ func manualTest(c *api.Context, w http.ResponseWriter, r *http.Request) {
Type: model.TEAM_OPEN,
}
- if result := <-api.Srv.Store.Team().Save(team); result.Err != nil {
+ if result := <-api.Srv.Store.Team().Save(c.T, team); result.Err != nil {
c.Err = result.Err
return
} else {