From 4982c03397e901eb4a7728f6119fb7d4ec17336a Mon Sep 17 00:00:00 2001 From: Guillaume De Saint Martin Date: Fri, 16 Aug 2024 19:30:27 +0200 Subject: [PATCH] [ExchangeTest] fix default value --- .../exchanges_tests/abstract_authenticated_exchange_tester.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/additional_tests/exchanges_tests/abstract_authenticated_exchange_tester.py b/additional_tests/exchanges_tests/abstract_authenticated_exchange_tester.py index c794665c5..99859f241 100644 --- a/additional_tests/exchanges_tests/abstract_authenticated_exchange_tester.py +++ b/additional_tests/exchanges_tests/abstract_authenticated_exchange_tester.py @@ -81,7 +81,7 @@ class AbstractAuthenticatedExchangeTester: USE_ORDER_OPERATION_TO_CHECK_API_KEY_RIGHTS = False # set True when api key rights can't be checked using a # dedicated api and have to be checked by sending an order operation EXPECTED_INVALID_ORDERS_QUANTITY = [] # orders with known invalid quantity exchange order id (usually legacy) - CHECK_EMPTY_ACCOUNT = True # set True when the account to check has no funds. Warning: does not check order + CHECK_EMPTY_ACCOUNT = False # set True when the account to check has no funds. Warning: does not check order # parse/create/fill/cancel or portfolio & trades parsing # Implement all "test_[name]" methods, call super() to run the test, pass to ignore it.