Tests: Don't trigger fatal error if cache path is not empty

This commit is contained in:
Michael Mayer 2022-02-23 15:16:45 +01:00
parent 9c1325f38e
commit e512dcef67

View file

@ -216,7 +216,7 @@ func (c *Config) RemoveTestData(t *testing.T) {
}
if err := os.RemoveAll(c.CachePath()); err != nil {
t.Fatal(err)
t.Logf("test: %s (remove cache)", err)
}
}