Skip to content

Commit

Permalink
fix(get_version_based_on_conf): master is now "enterprise"
Browse files Browse the repository at this point in the history
test was assuming any version from master wouldn't be with enterprise
version scheme, that has change and now master is with 2025.1
and that's expected, the logic of the test has change to expect
enterprise like version
  • Loading branch information
fruch committed Jan 22, 2025
1 parent a9324dc commit 1f2a1b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions unit_tests/test_config_get_version_based_on_conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def test_docker(scylla_version, expected_docker_image, expected_outcome):
argvalues=[
pytest.param('6.1', ('6.1', False), id='6.1'),
pytest.param('2024.1', ('2024.1', True), id='2024.1'),
pytest.param('master:latest', (None, False), id='master'),
pytest.param('master:latest', (None, True), id='master'),
pytest.param('branch-6.0:latest', (None, False), id='branch-6.0'),
pytest.param('enterprise:latest', (None, True), id='enterprise'),
pytest.param('enterprise-2023.1:latest', (None, True), id='enterprise-2023.1'),
Expand Down Expand Up @@ -107,7 +107,7 @@ def test_scylla_repo(scylla_version, expected_outcome, distro):
argvalues=[
pytest.param('6.2', ('6.2', False), id='6.2'),
pytest.param('2024.2', ('2024.2', True), id='2024.2'),
pytest.param('master:latest', (None, False), id='master'),
pytest.param('master:latest', (None, True), id='master'),
pytest.param('branch-6.2:latest', (None, False), id='branch-6.2'),
pytest.param('enterprise:latest', (None, True), id='enterprise'),
pytest.param('branch-2024.1:latest', (None, True), id='branch-2024.1'),
Expand Down

0 comments on commit 1f2a1b0

Please sign in to comment.