Skip to content

Commit

Permalink
Minor update to fix track on upgrade test
Browse files Browse the repository at this point in the history
This should fix "Upgrading keystone to 2022.2/stable" resulting
in 'no releases found for channel "2022.2/stable"'.

Instead, keystone should be upgraded to zed/stable.
  • Loading branch information
Corey Bryant committed Oct 30, 2023
1 parent cec24d7 commit 227ceb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zaza/openstack/charm_tests/charm_upgrade/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def test_200_run_charm_upgrade(self):
os_version, os_codename = (
upgrade_utils.determine_next_openstack_release(
charm_track))
if os_versions.CompareOpenStack(os_codename) >= 'zed':
if os_versions.CompareOpenStack(os_codename) > 'zed':
new_charm_track = os_version
else:
new_charm_track = os_codename
Expand Down

0 comments on commit 227ceb2

Please sign in to comment.