mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
Fix wrong argument order for python 3.4
This commit is contained in:
parent
ae52e015ce
commit
af243907dd
@ -49,7 +49,7 @@ def test_bigchain_class_initialization_with_parameters(config):
|
|||||||
'keyring': ['key_one', 'key_two'],
|
'keyring': ['key_one', 'key_two'],
|
||||||
}
|
}
|
||||||
connection = Connection()
|
connection = Connection()
|
||||||
bigchain = Bigchain(**init_kwargs, connection=connection)
|
bigchain = Bigchain(connection=connection, **init_kwargs)
|
||||||
assert bigchain.connection == connection
|
assert bigchain.connection == connection
|
||||||
assert bigchain.me == init_kwargs['public_key']
|
assert bigchain.me == init_kwargs['public_key']
|
||||||
assert bigchain.me_private == init_kwargs['private_key']
|
assert bigchain.me_private == init_kwargs['private_key']
|
||||||
|
Loading…
x
Reference in New Issue
Block a user