removing added pylint exception for unpacking-non-sequence pylint rule

This commit is contained in:
Natalie Lee 2023-05-25 14:53:45 +00:00
parent 41fe2c2b39
commit 235cd93326

View file

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