diff --git a/tests/bwc/test_recovery.py b/tests/bwc/test_recovery.py index cea19d1f..43900d05 100644 --- a/tests/bwc/test_recovery.py +++ b/tests/bwc/test_recovery.py @@ -26,7 +26,8 @@ UpgradePath('5.8.x', '5.9.x'), UpgradePath('5.9.x', '5.10.x'), UpgradePath('5.10.x', '6.0.x'), - UpgradePath('6.0.x', 'latest-nightly') + UpgradePath('6.0.x', '6.0'), + UpgradePath('6.0', 'latest-nightly') ] UPGRADE_PATHS_FROM_43 = [UpgradePath('4.3.x', '4.4.x')] diff --git a/tests/bwc/test_rolling_upgrade.py b/tests/bwc/test_rolling_upgrade.py index e462eb1b..5bbbf569 100644 --- a/tests/bwc/test_rolling_upgrade.py +++ b/tests/bwc/test_rolling_upgrade.py @@ -44,7 +44,8 @@ UpgradePath('5.8.x', '5.9.x'), UpgradePath('5.9.x', '5.10.x'), UpgradePath('5.10.x', '6.0.x'), - UpgradePath('6.0.x', 'latest-nightly'), + UpgradePath('6.0.x', '6.0'), + UpgradePath('6.0', 'latest-nightly'), ) diff --git a/tests/bwc/test_upgrade.py b/tests/bwc/test_upgrade.py index c5e087b2..b78686e7 100644 --- a/tests/bwc/test_upgrade.py +++ b/tests/bwc/test_upgrade.py @@ -59,6 +59,7 @@ VersionDef('5.9.x', []), VersionDef('5.10.x', []), VersionDef('6.0.x', []), + VersionDef('6.0', []), VersionDef('latest-nightly', []) ) )