mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2025-03-11 15:34:56 +00:00
lib/storage: remove unneeded fmt.Sprintf
This commit is contained in:
parent
51e661ecfe
commit
c87fb9191e
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ func TestSearchQueryMarshalUnmarshal(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestSearch(t *testing.T) {
|
func TestSearch(t *testing.T) {
|
||||||
path := fmt.Sprintf("TestSearch")
|
path := "TestSearch"
|
||||||
st, err := OpenStorage(path, 0)
|
st, err := OpenStorage(path, 0)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("cannot open storage %q: %s", path, err)
|
t.Fatalf("cannot open storage %q: %s", path, err)
|
||||||
|
|
Loading…
Reference in a new issue