From e69e0078d0a3a6209a096490204932c79b4641c1 Mon Sep 17 00:00:00 2001 From: Marius van der Wijden Date: Fri, 10 Jul 2026 11:25:00 +0200 Subject: [PATCH] update checksums --- build/ci.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)