Problem: there are still unused fixtures

Solution: remove Merlin keys
This commit is contained in:
codegeschrei 2018-08-23 15:40:32 +02:00
parent 874edab893
commit 061cc5f645
2 changed files with 0 additions and 11 deletions

View File

@ -274,7 +274,6 @@ def test_calling_main(start_mock, monkeypatch):
assert start_mock.called is True
@patch('bigchaindb.config_utils.autoconfigure')
@patch('bigchaindb.commands.bigchaindb.run_recover')
@patch('bigchaindb.start.start')
def test_recover_db_on_start(mock_run_recover,

View File

@ -246,16 +246,6 @@ def merlin():
return generate_key_pair()
@pytest.fixture
def merlin_privkey(merlin):
return merlin.private_key
@pytest.fixture
def merlin_pubkey(merlin):
return merlin.public_key
@pytest.fixture
def b():
from bigchaindb import BigchainDB