Skip to content

Commit

Permalink
Fix test for license validation
Browse files Browse the repository at this point in the history
  • Loading branch information
iliakur committed Sep 16, 2024
1 parent 35be561 commit cfe40d3
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 cfe40d3

Please sign in to comment.