Fix new linter errors that poped up on nightlys

This commit is contained in:
Daniel A. Wozniak 2024-07-18 14:42:39 -07:00 committed by Daniel Wozniak
parent 14edbcf19c
commit 15112db802

View file

@ -806,7 +806,7 @@ async def test_req_chan_decode_data_dict_entry_v2(minion_opts, master_opts, pki_
"ver": "2",
"cmd": "_pillar",
}
ret = await client.crypted_transfer_decode_dictentry(
ret = await client.crypted_transfer_decode_dictentry( # pylint: disable=E1121,E1123
load,
dictkey="pillar",
)
@ -884,7 +884,7 @@ async def test_req_chan_decode_data_dict_entry_v2_bad_nonce(
}
with pytest.raises(salt.crypt.AuthenticationError) as excinfo:
ret = await client.crypted_transfer_decode_dictentry(
ret = await client.crypted_transfer_decode_dictentry( # pylint: disable=E1121,E1123
load,
dictkey="pillar",
)
@ -972,7 +972,7 @@ async def test_req_chan_decode_data_dict_entry_v2_bad_signature(
}
with pytest.raises(salt.crypt.AuthenticationError) as excinfo:
ret = await client.crypted_transfer_decode_dictentry(
ret = await client.crypted_transfer_decode_dictentry( # pylint: disable=E1121,E1123
load,
dictkey="pillar",
)
@ -1063,7 +1063,7 @@ async def test_req_chan_decode_data_dict_entry_v2_bad_key(
}
try:
with pytest.raises(salt.crypt.AuthenticationError) as excinfo:
await client.crypted_transfer_decode_dictentry(
await client.crypted_transfer_decode_dictentry( # pylint: disable=E1121,E1123
load,
dictkey="pillar",
)