mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix linter errors
This commit is contained in:
parent
f2be0b75c6
commit
df47c099e3
1 changed files with 4 additions and 4 deletions
|
@ -690,7 +690,7 @@ async def test_req_chan_decode_data_dict_entry_v2(minion_opts, master_opts, pki_
|
|||
"cmd": "_pillar",
|
||||
}
|
||||
try:
|
||||
ret = await client.crypted_transfer_decode_dictentry(
|
||||
ret = await client.crypted_transfer_decode_dictentry( # pylint: disable=E1121,E1123
|
||||
load,
|
||||
dictkey="pillar",
|
||||
)
|
||||
|
@ -774,7 +774,7 @@ async def test_req_chan_decode_data_dict_entry_v2_bad_nonce(
|
|||
|
||||
try:
|
||||
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",
|
||||
)
|
||||
|
@ -866,7 +866,7 @@ async def test_req_chan_decode_data_dict_entry_v2_bad_signature(
|
|||
|
||||
try:
|
||||
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",
|
||||
)
|
||||
|
@ -960,7 +960,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