diff options
author | Abhijeet Kasurde <akasurde@redhat.com> | 2024-06-11 04:23:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-11 04:23:49 +0200 |
commit | d16ad25e4b7a8358f3ff374a26aa4df0cc829a5b (patch) | |
tree | 8d7a1515f43a6b102ab0b09f87dc6e66289bed2d /test/units/plugins | |
parent | docs adjustments (#83369) (diff) | |
download | ansible-d16ad25e4b7a8358f3ff374a26aa4df0cc829a5b.tar.xz ansible-d16ad25e4b7a8358f3ff374a26aa4df0cc829a5b.zip |
Remove extraneous pylint ignore (#83257)
* Pylint issue 511 is closed, remove ignore related to that.
Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
Diffstat (limited to 'test/units/plugins')
-rw-r--r-- | test/units/plugins/connection/test_psrp.py | 2 | ||||
-rw-r--r-- | test/units/plugins/connection/test_winrm.py | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/test/units/plugins/connection/test_psrp.py b/test/units/plugins/connection/test_psrp.py index 7fd6eadd62..d1c5fe821a 100644 --- a/test/units/plugins/connection/test_psrp.py +++ b/test/units/plugins/connection/test_psrp.py @@ -198,8 +198,6 @@ class TestConnectionPSRP(object): ), ) - # pylint bug: https://github.com/PyCQA/pylint/issues/511 - # pylint: disable=undefined-variable @pytest.mark.parametrize('options, expected', ((o, e) for o, e in OPTIONS_DATA)) def test_set_options(self, options, expected): diff --git a/test/units/plugins/connection/test_winrm.py b/test/units/plugins/connection/test_winrm.py index c08cdd9d7e..00a29c9728 100644 --- a/test/units/plugins/connection/test_winrm.py +++ b/test/units/plugins/connection/test_winrm.py @@ -199,8 +199,6 @@ class TestConnectionWinRM(object): ), ) - # pylint bug: https://github.com/PyCQA/pylint/issues/511 - # pylint: disable=undefined-variable @pytest.mark.parametrize('options, direct, expected, kerb', ((o, d, e, k) for o, d, e, k in OPTIONS_DATA)) def test_set_options(self, options, direct, expected, kerb): |