Fixes after rebase

This commit is contained in:
jeanluc 2023-11-16 09:28:43 +01:00 committed by Daniel Wozniak
parent 8cb54e658b
commit 3c2e1ba1fb
2 changed files with 12 additions and 2 deletions

View file

@ -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
)