mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fixes after rebase
This commit is contained in:
parent
8cb54e658b
commit
3c2e1ba1fb
2 changed files with 12 additions and 2 deletions
|
@ -894,7 +894,12 @@ def test_search_keys(gpghome):
|
|||
assert ret == _expected_result
|
||||
|
||||
assert (
|
||||
call("person@example.com", "keys.openpgp.org", None)
|
||||
call(
|
||||
"person@example.com",
|
||||
"keys.openpgp.org",
|
||||
user=None,
|
||||
gnupghome=None,
|
||||
)
|
||||
in mock_search_keys.mock_calls
|
||||
)
|
||||
|
||||
|
@ -902,7 +907,12 @@ def test_search_keys(gpghome):
|
|||
assert ret == _expected_result
|
||||
|
||||
assert (
|
||||
call("person@example.com", "keyserver.ubuntu.com", None)
|
||||
call(
|
||||
"person@example.com",
|
||||
"keyserver.ubuntu.com",
|
||||
user=None,
|
||||
gnupghome=None,
|
||||
)
|
||||
in mock_search_keys.mock_calls
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue