Skip to content

Commit

Permalink
Use filepath.Join() instead of hardcoding path separator
Browse files Browse the repository at this point in the history
Signed-off-by: Marco Pracucci <marco@pracucci.com>
  • Loading branch information
pracucci committed Feb 6, 2024
1 parent 37e0593 commit 75c2e3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/storegateway/bucket_stores_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ func TestBucketStore_Series_ShouldQueryBlockWithOutOfOrderChunks(t *testing.T) {

ctx := context.Background()
cfg := prepareStorageConfig(t)
fixtureDir := "fixtures/test-query-block-with-ooo-chunks"
fixtureDir := filepath.Join("fixtures", "test-query-block-with-ooo-chunks")
storageDir := t.TempDir()

bkt, err := filesystem.NewBucketClient(filesystem.Config{Directory: storageDir})
Expand Down

0 comments on commit 75c2e3b

Please sign in to comment.