summaryrefslogtreecommitdiffstats
path: root/store/sql_channel_store_test.go
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-12-15 11:05:40 -0800
committer=Corey Hulen <corey@hulen.com>2015-12-15 11:05:40 -0800
commit944f884a0557f50704fccc530810f4d99a17de49 (patch)
treea75aae99b0b91daf8053a7810f195cb34ef35ab4 /store/sql_channel_store_test.go
parentba149bd971a5111808a7aaa6478c8de885b9f6ae (diff)
downloadchat-944f884a0557f50704fccc530810f4d99a17de49.tar.gz
chat-944f884a0557f50704fccc530810f4d99a17de49.tar.bz2
chat-944f884a0557f50704fccc530810f4d99a17de49.zip
Fixing channel limit
Diffstat (limited to 'store/sql_channel_store_test.go')
-rw-r--r--store/sql_channel_store_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/store/sql_channel_store_test.go b/store/sql_channel_store_test.go
index 695991bf7..8b22fbb7a 100644
--- a/store/sql_channel_store_test.go
+++ b/store/sql_channel_store_test.go
@@ -41,7 +41,7 @@ func TestChannelStoreSave(t *testing.T) {
}
o1.Type = model.CHANNEL_OPEN
- for i := 0; i < 150; i++ {
+ for i := 0; i < 1000; i++ {
o1.Id = ""
o1.Name = "a" + model.NewId() + "b"
if err := (<-store.Channel().Save(&o1)).Err; err != nil {