Skip to content

Commit

Permalink
Fix goof
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanCoding committed Jan 13, 2025
1 parent 532332d commit e9e124a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion awx/main/tests/functional/test_python_requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ def test_bootstrap_consistent():
continue
req_name, _ = line.split('=', 1)
if req_name == boot_req_name:
different_requirements.append((req, line))
if req != line:
different_requirements.append((req, line))

Check warning on line 33 in awx/main/tests/functional/test_python_requirements.py

View check run for this annotation

Codecov / codecov/patch

awx/main/tests/functional/test_python_requirements.py#L33

Added line #L33 was not covered by tests
break

assert not different_requirements
Expand Down

0 comments on commit e9e124a

Please sign in to comment.