From df3078b5a6caa721f7d57e262835821441f5ef98 Mon Sep 17 00:00:00 2001 From: z-bowen Date: Fri, 27 Jul 2018 16:18:09 +0200 Subject: [PATCH] Problem: Flake8 style complaints Solution: Made things prettier --- tests/conftest.py | 2 +- tests/db/test_bigchain_api.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) 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):