The linter is not always right

This commit is contained in:
Daniel A. Wozniak 2023-05-22 14:56:15 -07:00 committed by Gareth J. Greenaway
parent 356120f91a
commit 23582dce20

View file

@ -67,5 +67,8 @@ def test_issue_64169(caplog):
# Confirm that the state continued to install the package as expected.
# Only check the 'pkgs' parameter of pip.install
mock_install_call_args, mock_install_call_kwargs = mock_pip_install.call_args
( # pylint: disable=unpacking-non-sequence
mock_install_call_args,
mock_install_call_kwargs,
) = mock_pip_install.call_args
assert mock_install_call_kwargs["pkgs"] == pkg_to_install