mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix new linter errors that poped up on nightlys
This commit is contained in:
parent
14edbcf19c
commit
15112db802
1 changed files with 4 additions and 4 deletions
|
@ -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",
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue