Use correct extension in suite

Signed-off-by: Jason T. Greene <jason.greene@redhat.com>
This commit is contained in:
Jason T. Greene 2024-03-19 13:06:27 -05:00
parent 8a643c243e
commit 3f2b8bb314
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ func pullWSLDisk() error {
if downloadLocation == "" {
return errors.New("machine tests require a file reference to a disk image right now")
}
compressionExtension := ".xz"
compressionExtension := ".zst"
suiteImageName = strings.TrimSuffix(path.Base(downloadLocation), compressionExtension)
fqImageName = filepath.Join(tmpDir, suiteImageName)
getMe, err := url2.Parse(downloadLocation)