Get tests running again

pull/760/head
tuxxy 2019-02-13 12:04:48 -07:00 committed by jMyles
parent 43a87b4e95
commit 55dec8ff25
1 changed files with 4 additions and 3 deletions

View File

@ -37,7 +37,8 @@ from nucypher.data_sources import DataSource
from nucypher.keystore import keystore
from nucypher.keystore.db import Base
from nucypher.keystore.keypairs import SigningKeypair
from nucypher import network
from nucypher.network.character_control import bob
from nucypher.network.character_control import enrico
from nucypher.utilities.sandbox.blockchain import TesterBlockchain, token_airdrop
from nucypher.utilities.sandbox.constants import (NUMBER_OF_URSULAS_IN_DEVELOPMENT_NETWORK,
DEVELOPMENT_TOKEN_AIRDROP_AMOUNT, MOCK_URSULA_STARTING_PORT,
@ -336,7 +337,7 @@ def alice_control(federated_alice, federated_ursulas):
@pytest.fixture(scope='module')
def bob_control(federated_bob, federated_ursulas):
teacher_node = list(federated_ursulas)[0]
bob_control = make_bob_control(federated_bob, teacher_node)
bob_control = bob.make_bob_control(federated_bob, teacher_node)
bob_control.config['DEBUG'] = True
bob_control.config['TESTING'] = True
yield bob_control.test_client()
@ -345,7 +346,7 @@ def bob_control(federated_bob, federated_ursulas):
@pytest.fixture(scope='module')
def enrico_control(capsule_side_channel):
_, data_source = capsule_side_channel
enrico_control = make_enrico_control(data_source)
enrico_control = enrico.make_enrico_control(data_source)
enrico_control.config['DEBUG'] = True
enrico_control.config['TESTING'] = True
yield enrico_control.test_client()