removed print statements

This commit is contained in:
Gert Wohlgemuth
2018-06-14 16:32:37 -07:00
parent a5ce533b35
commit fc86d32f12
6 changed files with 0 additions and 8 deletions

View File

@@ -520,7 +520,6 @@ def test_get_order(default_conf, mocker):
order = MagicMock()
order.myid = 123
exchange._DRY_RUN_OPEN_ORDERS['X'] = order
print(exchange.get_order('X', 'TKN/BTC'))
assert exchange.get_order('X', 'TKN/BTC').myid == 123
default_conf['dry_run'] = False

View File

@@ -63,7 +63,6 @@ def test_scripts_options() -> None:
arguments = Arguments(['-p', 'ETH/BTC'], '')
arguments.scripts_options()
args = arguments.get_parsed_arg()
print(args.pair)
assert args.pair == 'ETH/BTC'