From fbfc019c4795b6c4c9d7fc3770c7a12e0eac6c89 Mon Sep 17 00:00:00 2001 From: George Date: Thu, 24 Oct 2024 12:39:56 -0700 Subject: [PATCH] Fixup the origin version in tests --- cmd/soroban-rpc/internal/integrationtest/migrate_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cmd/soroban-rpc/internal/integrationtest/migrate_test.go b/cmd/soroban-rpc/internal/integrationtest/migrate_test.go index 750b8b82..a12eae86 100644 --- a/cmd/soroban-rpc/internal/integrationtest/migrate_test.go +++ b/cmd/soroban-rpc/internal/integrationtest/migrate_test.go @@ -31,6 +31,10 @@ func TestMigrate(t *testing.T) { // This version of RPC wasn't published as a docker container continue } + if originVersion == "22.0.0-rc2" { + // This version of RPC wasn't published without a deb build number suffix. + originVersion = "22.0.0-rc2-100" + } t.Run(originVersion, func(t *testing.T) { testMigrateFromVersion(t, originVersion) })