summaryrefslogtreecommitdiffstats
path: root/store/sql_store_test.go
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-10-15 11:16:26 -0700
committer=Corey Hulen <corey@hulen.com>2015-10-15 11:16:26 -0700
commitde717aef56dfaa0b9b676ce82d4b9d7abdb12428 (patch)
treee35cbb702a1c6d508f3295865739186a1b3f44c9 /store/sql_store_test.go
parentadc20981e2c370f09467d4fa249065d23f533a0a (diff)
downloadchat-de717aef56dfaa0b9b676ce82d4b9d7abdb12428.tar.gz
chat-de717aef56dfaa0b9b676ce82d4b9d7abdb12428.tar.bz2
chat-de717aef56dfaa0b9b676ce82d4b9d7abdb12428.zip
Marking when user ran the unit tests
Diffstat (limited to 'store/sql_store_test.go')
-rw-r--r--store/sql_store_test.go7
1 files changed, 5 insertions, 2 deletions
diff --git a/store/sql_store_test.go b/store/sql_store_test.go
index a9e25cb33..1e04b676c 100644
--- a/store/sql_store_test.go
+++ b/store/sql_store_test.go
@@ -4,10 +4,11 @@
package store
import (
- "github.com/mattermost/platform/model"
- "github.com/mattermost/platform/utils"
"strings"
"testing"
+
+ "github.com/mattermost/platform/model"
+ "github.com/mattermost/platform/utils"
)
var store Store
@@ -16,6 +17,8 @@ func Setup() {
if store == nil {
utils.LoadConfig("config.json")
store = NewSqlStore()
+
+ store.MarkSystemRanUnitTests()
}
}