Remove print statements from unit test (#1487)

This commit is contained in:
Jonathan Zernik 2021-10-03 19:53:06 -07:00 committed by GitHub
parent 24e64fc30b
commit 70511ea291
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -58,8 +58,6 @@ webadmin_enabled_config = {
@pytest.fixture(scope="module", params=[mainnet_config, webadmin_enabled_config])
def squeak_node(request):
print('--------request.param---------')
print(request.param)
with mock.patch('squeaknode.node.squeak_node.LNDLightningClient', autospec=True), \
mock.patch('squeaknode.node.squeak_node.get_connection_string', autospec=True), \
mock.patch('squeaknode.node.squeak_node.get_engine', autospec=True), \
@ -69,7 +67,5 @@ def squeak_node(request):
def test_start_stop(squeak_node):
print('--------squeak_node.config---------')
print(squeak_node.config)
squeak_node.start_running()
squeak_node.stop_running()