Skip to content

Commit d3160a3

Browse files
committed
bug: remove invalid arg
1 parent 59069fc commit d3160a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/idcindex.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,7 @@ def test_cli_handles_insufficient_space_gracefully(self):
654654
"""Test that CLI handles the exception without crashing."""
655655
# Mock the disk check to simulate insufficient space (1000 bytes = ~0.001 MB)
656656
mock_usage = self._create_mock_disk_usage(free_bytes=1000)
657-
runner = CliRunner(mix_stderr=False)
657+
runner = CliRunner()
658658
with patch("psutil.disk_usage", return_value=mock_usage):
659659
result = runner.invoke(
660660
cli.download_from_selection,

0 commit comments

Comments
 (0)