diff options
| author | Anthony Sottile <asottile@umich.edu> | 2019-12-30 00:20:42 +0000 |
|---|---|---|
| committer | Anthony Sottile <asottile@umich.edu> | 2019-12-30 00:20:42 +0000 |
| commit | 20906d43046096c31dfcd9b8bc536dbd21f043ef (patch) | |
| tree | be8cf25e4c6514ed9c71427c44d34bef6d3f23f3 /tests/unit | |
| parent | bb61b3df82a938f7cd1ca32daab4a31e4586b281 (diff) | |
| parent | 738c8490ec56fc364f4229df2c7c9adca8d1d4f2 (diff) | |
| download | flake8-20906d43046096c31dfcd9b8bc536dbd21f043ef.tar.gz | |
Merge branch 'aggregator-config-isolated-fix' into 'master'
aggregator: Forward --config and --isolated options during aggregation
Closes #605
See merge request pycqa/flake8!395
Diffstat (limited to 'tests/unit')
| -rw-r--r-- | tests/unit/test_legacy_api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/test_legacy_api.py b/tests/unit/test_legacy_api.py index 8f6045e..d3b9eb5 100644 --- a/tests/unit/test_legacy_api.py +++ b/tests/unit/test_legacy_api.py @@ -34,7 +34,7 @@ def test_get_style_guide(): mockedapp.find_plugins.assert_called_once_with(config_finder, None, False) mockedapp.register_plugin_options.assert_called_once_with() mockedapp.parse_configuration_and_cli.assert_called_once_with( - config_finder, []) + config_finder, None, False, []) mockedapp.make_formatter.assert_called_once_with() mockedapp.make_guide.assert_called_once_with() mockedapp.make_file_checker_manager.assert_called_once_with() |
