1
0
mirror of https://github.com/khorevaa/logos.git synced 2025-01-22 05:10:53 +02:00

fix: error in tests

This commit is contained in:
khorevaa 2021-02-01 19:28:39 +03:00
parent 5dfa0c9f2f
commit 96f9c24e4e

View File

@ -64,7 +64,9 @@ func TestConfigFrom(t *testing.T) {
defConfig, err := common.NewConfigFrom(DefaultConfig)
cfg, err = common.MergeConfigs(defConfig, cfg)
t.Error(err)
if err != nil {
t.Fatalf(err.Error())
}
})
}