Skip to content

Commit d6ab6a6

Browse files
committed
chore: remove prints on tests
1 parent b01ae54 commit d6ab6a6

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

tests/rest/test_trading.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ def tearDown(self):
2424
class GetTradingBalance(AuthCallsTestCase):
2525
def test_successfull_call(self):
2626
trading_balances = self.client.get_spot_trading_balances()
27-
print("**balances**")
28-
print(trading_balances)
2927
if len(trading_balances) == 0:
3028
self.fail("no balances")
3129
if not good_list(good_balance, trading_balances):
@@ -91,7 +89,6 @@ def test_successfull_call(self): # create order should work properly
9189
quantity='0.01',
9290
client_order_id=client_order_id,
9391
price='1000')
94-
print(order)
9592
if not good_order(order):
9693
self.fail("not good order")
9794
# get
@@ -225,7 +222,6 @@ def test_create_order_list(self):
225222
time_in_force=args.TimeInForce.FOK,
226223
quantity="0.1",
227224
price="10000")])
228-
print(orders)
229225
if not good_list(good_order, orders):
230226
self.fail("not valid orders: " + orders)
231227
self.client.cancel_all_orders()

0 commit comments

Comments
 (0)