Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lidavidm committed Jan 30, 2025
1 parent 5cd7873 commit c30fbc6
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions docs/source/tests/test_cookbook.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,7 @@ def test_cookbook_recipe(recipe: Recipe, capsys: pytest.CaptureFixture) -> None:
expected = [line for line in source.read().strip().splitlines() if line]

output = subprocess.check_output(recipe.executable, text=True)
captured = [
line for line in output.strip().splitlines() if line
]
captured = [line for line in output.strip().splitlines() if line]

assert captured == expected
else:
Expand Down

0 comments on commit c30fbc6

Please sign in to comment.