We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Progress
1 parent ddff610 commit d85d2beCopy full SHA for d85d2be
tests/test_cli_deploy.py
@@ -9,9 +9,9 @@
9
import httpx
10
import pytest
11
import respx
12
-import rich_toolkit
13
from click.testing import Result
14
from httpx import Response
+from rich_toolkit.progress import Progress
15
from time_machine import TimeMachineFixture
16
from typer.testing import CliRunner
17
@@ -1737,7 +1737,7 @@ def test_upload_deployment_progress(
1737
1738
with (
1739
changing_dir(tmp_path),
1740
- patch.object(rich_toolkit.toolkit.Progress, "log") as mock_progress,
+ patch.object(Progress, "log") as mock_progress,
1741
):
1742
result = runner.invoke(app, ["deploy"])
1743
assert result.exit_code == 0
0 commit comments