All test passed. Acceptance tests passed too

This commit is contained in:
Sangat Das
2022-01-20 17:15:37 +00:00
parent 24f34f01cb
commit 4ddfcb0d8d
42 changed files with 182 additions and 182 deletions

View File

@@ -25,7 +25,7 @@
import os
# For this test case we import and use the Python Driver.
from bigchaindb_driver import Planetmint
from bigchaindb_driver import BigchainDB
from bigchaindb_driver.crypto import generate_keypair
@@ -33,7 +33,7 @@ def test_multiple_owners():
# ## Set up a connection to Planetmint
# Check [test_basic.py](./test_basic.html) to get some more details
# about the endpoint.
bdb = Planetmint(os.environ.get('PLANETMINT_ENDPOINT'))
bdb = BigchainDB(os.environ.get('PLANETMINT_ENDPOINT'))
# Hey Alice and Bob, nice to see you again!
alice, bob = generate_keypair(), generate_keypair()