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 39a0d8b commit 7ce3cd2Copy full SHA for 7ce3cd2
tests/test_cli.py
@@ -1,5 +1,5 @@
1
import pytest
2
-from unittest.mock import patch, MagicMock, AsyncMock
+from unittest.mock import patch, MagicMock, AsyncMock, mock_open
3
import sys
4
import asyncio
5
from io import StringIO
@@ -234,4 +234,4 @@ def test_main_with_config_file(mock_analyzer):
234
assert call_args[4] == False # compute hashes
235
assert call_args[5] == 'csv' # export format
236
assert call_args[6] == mock_profile # profile object
237
- assert call_args[7] == 1000 # chunk size
+ assert call_args[7] == 1000 # chunk size
0 commit comments