diff --git a/acceptance/python/Dockerfile b/acceptance/python/Dockerfile index fcf26de4..56c13b15 100644 --- a/acceptance/python/Dockerfile +++ b/acceptance/python/Dockerfile @@ -5,4 +5,4 @@ RUN pip install --upgrade \ pycco \ websocket-client~=0.47.0 \ pytest~=3.0 \ - bigchaindb-driver==0.5.0a2 + bigchaindb-driver==0.5.0a4 diff --git a/acceptance/python/src/test_basic.py b/acceptance/python/src/test_basic.py index b18d3c04..a965e19f 100644 --- a/acceptance/python/src/test_basic.py +++ b/acceptance/python/src/test_basic.py @@ -59,7 +59,7 @@ def test_basic(): # Now she is ready to send it to the BigchainDB Network. - sent_transfer_tx = bdb.transactions.send(fulfilled_creation_tx, mode='commit') + sent_transfer_tx = bdb.transactions.send(fulfilled_creation_tx) # And just to be 100% sure, she also checks if she can retrieve # it from the BigchainDB node. @@ -106,7 +106,7 @@ def test_basic(): private_keys=alice.private_key) # She finally sends the transaction to a BigchainDB node. - sent_transfer_tx = bdb.transactions.send(fulfilled_transfer_tx, mode='commit') + sent_transfer_tx = bdb.transactions.send(fulfilled_transfer_tx) # And just to be 100% sure, she also checks if she can retrieve # it from the BigchainDB node. diff --git a/acceptance/python/src/test_double_spend.py b/acceptance/python/src/test_double_spend.py index 7aefe848..e785feee 100644 --- a/acceptance/python/src/test_double_spend.py +++ b/acceptance/python/src/test_double_spend.py @@ -26,7 +26,7 @@ def test_double_create(): def send_and_queue(tx): try: - bdb.transactions.send(tx, mode='commit') + bdb.transactions.send(tx) results.put('OK') except bigchaindb_driver.exceptions.TransportError as e: results.put('FAIL')