lib/storage: remove unneeded fmt.Sprintf

This commit is contained in:
Aliaksandr Valialkin 2020-11-03 14:20:31 +02:00
parent 51e661ecfe
commit c87fb9191e

View File

@ -71,7 +71,7 @@ func TestSearchQueryMarshalUnmarshal(t *testing.T) {
}
func TestSearch(t *testing.T) {
path := fmt.Sprintf("TestSearch")
path := "TestSearch"
st, err := OpenStorage(path, 0)
if err != nil {
t.Fatalf("cannot open storage %q: %s", path, err)