summaryrefslogtreecommitdiffstats
path: root/store/sql_user_store_test.go
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2017-06-19 09:08:52 -0700
committerGitHub <noreply@github.com>2017-06-19 09:08:52 -0700
commite2cc0df2e83d5fd8cf6a23191dc9ffb7c20ca9b0 (patch)
treea0ccc92cdb4816c41a7bc8a8cd4751690e4db83a /store/sql_user_store_test.go
parent36f216cb7cb16958d98b3d77e121198596fd2213 (diff)
downloadchat-e2cc0df2e83d5fd8cf6a23191dc9ffb7c20ca9b0.tar.gz
chat-e2cc0df2e83d5fd8cf6a23191dc9ffb7c20ca9b0.tar.bz2
chat-e2cc0df2e83d5fd8cf6a23191dc9ffb7c20ca9b0.zip
PLT-6761 fixing unit tests (#6671)
Diffstat (limited to 'store/sql_user_store_test.go')
-rw-r--r--store/sql_user_store_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/store/sql_user_store_test.go b/store/sql_user_store_test.go
index 66bafda4e..dc4cd684a 100644
--- a/store/sql_user_store_test.go
+++ b/store/sql_user_store_test.go
@@ -1501,7 +1501,7 @@ func TestUserStoreSearch(t *testing.T) {
c1 := model.Channel{}
c1.TeamId = tid
c1.DisplayName = "NameName"
- c1.Name = "a" + model.NewId() + "b"
+ c1.Name = "zz" + model.NewId() + "b"
c1.Type = model.CHANNEL_OPEN
c1 = *Must(store.Channel().Save(&c1)).(*model.Channel)