summaryrefslogtreecommitdiffstats
path: root/api/team_test.go
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2016-09-27 07:07:32 -0700
committerenahum <nahumhbl@gmail.com>2016-09-27 11:07:32 -0300
commitbfca752940a13c874788b0c885d36b2b263bd4fb (patch)
tree3b49bbb91b0f397f5c68644c3d9f79f240855b10 /api/team_test.go
parent667db6e10c7bf4d3856a1f94eaad34d9e03352c1 (diff)
downloadchat-bfca752940a13c874788b0c885d36b2b263bd4fb.tar.gz
chat-bfca752940a13c874788b0c885d36b2b263bd4fb.tar.bz2
chat-bfca752940a13c874788b0c885d36b2b263bd4fb.zip
Fixing the console level debug statements (#4092)
Diffstat (limited to 'api/team_test.go')
-rw-r--r--api/team_test.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/api/team_test.go b/api/team_test.go
index 936ba696b..1a66a826f 100644
--- a/api/team_test.go
+++ b/api/team_test.go
@@ -564,7 +564,9 @@ func TestGetTeamMembers(t *testing.T) {
t.Fatal(err)
} else {
members := result.Data.([]*model.TeamMember)
- t.Log(members)
+ if members == nil {
+ t.Fatal("should be valid")
+ }
}
}