From 76240613db61eea866b7cf7bef20f5a970bb7adc Mon Sep 17 00:00:00 2001 From: z-bowen Date: Wed, 8 Aug 2018 12:16:00 +0200 Subject: [PATCH] Problem: Flake8 whining about spaces after comment # Solution: Made things pretty --- tests/commands/test_commands.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/commands/test_commands.py b/tests/commands/test_commands.py index 3e462167..d0db5d6c 100644 --- a/tests/commands/test_commands.py +++ b/tests/commands/test_commands.py @@ -343,9 +343,9 @@ class MockResponse(): return {'result': {'latest_block_height': self.height}} -#@pytest.mark.execute -#@patch('bigchaindb.lib.BigchainDB.get_validators') -#@pytest.mark.abci +# @pytest.mark.execute +# @patch('bigchaindb.lib.BigchainDB.get_validators') +# @pytest.mark.abci def test_upsert_validator_new_with_tendermint(b, priv_validator_path, user_sk, monkeypatch): """ WIP: Will be fixed and activated in the next PR @@ -362,9 +362,9 @@ def test_upsert_validator_new_with_tendermint(b, priv_validator_path, user_sk, m 'voting_power': 10} ] - #b.get_validators = mock_get - #mock_get_validators = mock_get - #monkeypatch.setattr('requests.get', mock_get) + # b.get_validators = mock_get + # mock_get_validators = mock_get + # monkeypatch.setattr('requests.get', mock_get) proposer_key = b.get_validators()[0]['pub_key']['value']