Problem: acceptance tests are using old pydriver (#2282)

Solution: update to the new driver version, and simplify the code
removing the `mode` parameter.
This commit is contained in:
vrde
2018-05-15 11:46:58 +02:00
committed by Troy McConaghy
parent 89d665c01e
commit dbf1b23c43
3 changed files with 4 additions and 4 deletions

View File

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