Fix extra space and call migrate on boot

This commit is contained in:
bel
2019-12-07 14:34:42 -07:00
parent 72169206f8
commit 2bb3bee83c
5 changed files with 22 additions and 7 deletions

View File

@@ -65,7 +65,7 @@ func TestJSONMarshal(t *testing.T) {
json.Unmarshal(b, &m)
if v, ok := m["tags"]; !ok {
t.Error(ok, m)
} else if v != "a, b" {
} else if v != "a,b" {
t.Error(v, m)
}
}