We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa1f873 commit 63778f8Copy full SHA for 63778f8
test/test_unit.py
@@ -4,7 +4,6 @@
4
import sys
5
6
import pytest
7
-from _pytest.capture import CaptureFixture
8
9
from subprocess_tee import run
10
@@ -44,7 +43,7 @@ def test_run_list() -> None:
44
43
assert result.stderr == old_result.stderr
45
46
47
-def test_run_echo(capsys: CaptureFixture[str]) -> None:
+def test_run_echo(capsys: pytest.CaptureFixture[str]) -> None:
48
"""Validate run call with echo dumps command."""
49
cmd = [sys.executable, "--version"]
50
old_result = subprocess.run(
0 commit comments