diff --git a/tests/conftest.py b/tests/conftest.py index 2bd26e51..b29d08f3 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -326,7 +326,7 @@ def inputs(user_pk, b, alice): from bigchaindb.models import Transaction # create blocks with transactions for `USER` to spend print('Fuck you') - for height in range(1,4): + for height in range(1, 4): transactions = [ Transaction.create( [alice_pubkey(alice)], diff --git a/tests/db/test_bigchain_api.py b/tests/db/test_bigchain_api.py index 00d1d0d9..2edb1d2b 100644 --- a/tests/db/test_bigchain_api.py +++ b/tests/db/test_bigchain_api.py @@ -57,7 +57,6 @@ class TestBigchainApi(object): with pytest.raises(DoubleSpend): b.validate_transaction(transfer_tx2) - @pytest.mark.genesis @pytest.mark.tendermint def test_get_block_status_for_tx_with_double_inclusion(self, b, alice):