Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
paul1r committed Nov 15, 2023
1 parent 2ba5477 commit ed1c76e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/storage/bloom/v1/archive_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,11 @@ func TestUnGzData(t *testing.T) {
cmd := exec.Command("gzip", filePath)
err = cmd.Run()
require.Nil(t, err)

defer os.Remove(gzipFileName)

// Read the gzipped file using the compress/gzip package
gzipFile, err := os.Open(gzipFileName)
require.Nil(t, err)
defer gzipFile.Close()

fileContent, err := os.ReadFile(gzipFileName)
Expand Down

0 comments on commit ed1c76e

Please sign in to comment.