summaryrefslogtreecommitdiffstats
path: root/store/sql_store_test.go
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2016-02-22 16:31:19 -0800
committer=Corey Hulen <corey@hulen.com>2016-02-22 16:31:19 -0800
commit28ab0d835878bf1ad72dbae914ca112acfbe490d (patch)
tree98986ee8cf1c3e56d5768a56b1d799bd82569e44 /store/sql_store_test.go
parent1bb85818ca5d7569c17e56d523d9668b83973e65 (diff)
downloadchat-28ab0d835878bf1ad72dbae914ca112acfbe490d.tar.gz
chat-28ab0d835878bf1ad72dbae914ca112acfbe490d.tar.bz2
chat-28ab0d835878bf1ad72dbae914ca112acfbe490d.zip
Fixing postgres
Diffstat (limited to 'store/sql_store_test.go')
-rw-r--r--store/sql_store_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/store/sql_store_test.go b/store/sql_store_test.go
index 783d72b83..474a68ac7 100644
--- a/store/sql_store_test.go
+++ b/store/sql_store_test.go
@@ -106,7 +106,7 @@ func TestAlertDbCmds(t *testing.T) {
maxLen := sqlStore.GetMaxLengthOfColumnIfExists("Systems", "Test")
if maxLen != "50" {
- t.Fatal("Failed to get max length")
+ t.Fatal("Failed to get max length found " + maxLen)
}
if !sqlStore.AlterColumnTypeIfExists("Systems", "Test", "VARCHAR(25)", "VARCHAR(25)") {