Skip to content

Commit

Permalink
Fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
cidrblock committed Jul 30, 2024
1 parent 616fedc commit 16de550
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/unit/test_inspector.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from ansible_dev_environment.subcommands import inspector


def test_output_no_color(session_venv: Config, capsys: pytest.CaptureFixture) -> None:
def test_output_no_color(session_venv: Config, capsys: pytest.CaptureFixture[str]) -> None:
"""Test the inspector output.
Args:
Expand All @@ -30,7 +30,7 @@ def test_output_no_color(session_venv: Config, capsys: pytest.CaptureFixture) ->

def test_output_color(
session_venv: Config,
capsys: pytest.CaptureFixture,
capsys: pytest.CaptureFixture[str],
monkeypatch: pytest.MonkeyPatch,
) -> None:
"""Test the inspector output.
Expand All @@ -57,7 +57,7 @@ def test_output_color(

def test_no_rich(
session_venv: Config,
capsys: pytest.CaptureFixture,
capsys: pytest.CaptureFixture[str],
monkeypatch: pytest.MonkeyPatch,
) -> None:
"""Test the inspector output when rich is not available.
Expand Down

0 comments on commit 16de550

Please sign in to comment.