diff --git a/fs-repo-migrations/main.go b/fs-repo-migrations/main.go index 6e494945..28e4e824 100644 --- a/fs-repo-migrations/main.go +++ b/fs-repo-migrations/main.go @@ -130,7 +130,7 @@ func latestRepoMigration(fetcher migrations.Fetcher) (int, error) { // request and calculate latest // // When searching for latest migration, start looking using this repo version - const currentVersion = 12 + const currentVersion = 11 ctx, cancel := context.WithTimeout(context.Background(), time.Minute) defer cancel() diff --git a/sharness/t0030-simple-migration.sh b/sharness/t0030-simple-migration.sh index e3bc9040..9b368210 100755 --- a/sharness/t0030-simple-migration.sh +++ b/sharness/t0030-simple-migration.sh @@ -13,7 +13,7 @@ test_expect_success "'fs-repo-migrations -v' works" ' ' test_expect_success "'fs-repo-migrations -v' output looks good" ' - echo "12" >expected && + echo "11" >expected && test_cmp expected actual ' @@ -30,7 +30,7 @@ test_expect_success "'fs-repo-migrations -v' works" ' ' test_expect_success "'fs-repo-migrations -v' output looks good" ' - echo "12" >expected && + echo "11" >expected && test_cmp expected actual '