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 59069fc commit d3160a3Copy full SHA for d3160a3
tests/idcindex.py
@@ -654,7 +654,7 @@ def test_cli_handles_insufficient_space_gracefully(self):
654
"""Test that CLI handles the exception without crashing."""
655
# Mock the disk check to simulate insufficient space (1000 bytes = ~0.001 MB)
656
mock_usage = self._create_mock_disk_usage(free_bytes=1000)
657
- runner = CliRunner(mix_stderr=False)
+ runner = CliRunner()
658
with patch("psutil.disk_usage", return_value=mock_usage):
659
result = runner.invoke(
660
cli.download_from_selection,
0 commit comments