Skip to content

Commit

Permalink
Fix typo in filename
Browse files Browse the repository at this point in the history
  • Loading branch information
bertold committed Jul 2, 2024
1 parent 11fb16e commit 2f4d061
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tar_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ func (c *tarZCompressor) Compress(t *testing.T, _ string, destBase string) error

// No native Go library for .tar.Z and compress Unix utility is not available on
// Windows. So, we use a pre-compressed file from test_data.
tarZFilename := destBase + ".tar.Z"
tarZFilename := destBase + ".tar.z"
tarZDestFile, err := os.Create(tarZFilename)
require.NoError(t, err)

Expand Down

0 comments on commit 2f4d061

Please sign in to comment.