diff --git a/build/ci.go b/build/ci.go index 6423bbe5c9..169a656f4e 100644 --- a/build/ci.go +++ b/build/ci.go @@ -456,7 +456,7 @@ func doTest(cmdline []string) { // downloadSpecTestFixtures downloads and extracts the execution-spec-tests fixtures. func downloadSpecTestFixtures(csdb *download.ChecksumDB, cachedir string) string { ext := ".tar.gz" - base := "fixtures" + base := "fixtures_develop" archivePath := filepath.Join(cachedir, base+ext) if err := csdb.DownloadFileFromKnownURL(archivePath); err != nil { log.Fatal(err) @@ -470,7 +470,7 @@ func downloadSpecTestFixtures(csdb *download.ChecksumDB, cachedir string) string // downloadBALSpecTestFixtures downloads and extracts the bal-specific execution-spec-tests fixtures. func downloadBALSpecTestFixtures(csdb *download.ChecksumDB, cachedir string) string { ext := ".tar.gz" - base := "fixtures_bal" + base := "fixtures_glamsterdam-devnet" archivePath := filepath.Join(cachedir, base+ext) if err := csdb.DownloadFileFromKnownURL(archivePath); err != nil { log.Fatal(err)