Two changes in tests to reflect new APIs: 1) Vladimir gets a cert filepath and 2) We don't pass tls as a kwarg anymore for keyring.

pull/632/head
jMyles 2019-01-11 00:25:51 -05:00
parent 3ff2dc347d
commit 12d5ab0489
2 changed files with 1 additions and 2 deletions

View File

@ -127,4 +127,4 @@ def test_vladimir_uses_his_own_signing_key(blockchain_alice, blockchain_ursulas)
# However, the actual handshake proves him wrong. # However, the actual handshake proves him wrong.
with pytest.raises(vladimir.InvalidNode): with pytest.raises(vladimir.InvalidNode):
vladimir.verify_node(blockchain_alice.network_middleware) vladimir.verify_node(blockchain_alice.network_middleware, certificate_filepath="doesn't matter")

View File

@ -26,7 +26,6 @@ def test_generate_alice_keyring(tmpdir):
password=password, password=password,
encrypting=True, encrypting=True,
wallet=False, wallet=False,
tls=False,
keyring_root=tmpdir keyring_root=tmpdir
) )