From 3de8b7a0db77527ffcd83a9776d2f944b16e906f Mon Sep 17 00:00:00 2001 From: z-bowen Date: Wed, 29 Aug 2018 15:39:01 +0200 Subject: [PATCH] Problem: Missed a debug `print` Solution: Removed it --- tests/upsert_validator/test_validator_election.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/upsert_validator/test_validator_election.py b/tests/upsert_validator/test_validator_election.py index 8cf63a67..598cb753 100644 --- a/tests/upsert_validator/test_validator_election.py +++ b/tests/upsert_validator/test_validator_election.py @@ -144,6 +144,7 @@ def test_get_status_inconclusive(b, inconclusive_election, new_validator): assert resp == status +@pytest.mark.dev def test_upsert_validator_show(caplog, ongoing_election, b, priv_validator_path, user_sk, monkeypatch): from bigchaindb.commands.bigchaindb import run_upsert_validator_show @@ -160,4 +161,3 @@ def test_upsert_validator_show(caplog, ongoing_election, b, priv_validator_path, run_upsert_validator_show(show_args, b) msg = caplog.records.pop().msg assert msg == f'public_key={public_key}\npower={power}\nnode_id={node_id}\nstatus={status}' - print("I am here")