Problem: store_metadata was renamed

Solution: perform required update

Note: see #2034
This commit is contained in:
Sylvain Bellemare 2018-02-08 23:53:52 +01:00
parent 51d4f0f2d9
commit 967d5727e2

View File

@ -147,7 +147,7 @@ def test_store_transaction(mocker, tb, signed_create_tx,
signed_transfer_tx, db_context):
mocked_store_asset = mocker.patch('bigchaindb.backend.query.store_asset')
mocked_store_metadata = mocker.patch(
'bigchaindb.backend.query.store_metadata')
'bigchaindb.backend.query.store_metadatas')
mocked_store_transaction = mocker.patch(
'bigchaindb.backend.query.store_transaction')
mongo_client = MongoClient(host=db_context.host, port=db_context.port)