diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/unit/test_file_processor.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/unit/test_file_processor.py b/tests/unit/test_file_processor.py index 582abf2..84b051c 100644 --- a/tests/unit/test_file_processor.py +++ b/tests/unit/test_file_processor.py @@ -337,9 +337,9 @@ def test_log_token(token, log_string): @pytest.mark.parametrize('current_count, token_text, expected', [ - (None, '(', 1), - (None, '[', 1), - (None, '{', 1), + (0, '(', 1), + (0, '[', 1), + (0, '{', 1), (1, ')', 0), (1, ']', 0), (1, '}', 0), |
