Skip to content

Commit

Permalink
Fix test for license validation (#18591)
Browse files Browse the repository at this point in the history
  • Loading branch information
iliakur authored Sep 16, 2024
1 parent db6993c commit ec07846
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ddev/tests/cli/validate/test_licenses.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def test_invalid_requirement(repository, ddev, helpers):
with agent_requirements_path.open(encoding='utf-8') as file:
requirements = file.readlines()

requirements[0] = requirements[0].replace('==', '==^')
requirements[0] = "aerospike==^4.0.0; sys_platform != 'win32' and sys_platform != 'darwin'\n"

with agent_requirements_path.open(mode='w', encoding='utf-8') as file:
file.writelines(requirements[:3])
Expand Down

0 comments on commit ec07846

Please sign in to comment.