Skip to content

Commit fdcbb3c

Browse files
committed
chore: enable test checking funding-fee returned is not 0.
1 parent b07ffbf commit fdcbb3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/exchange_online/test_ccxt_compat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ def test_ccxt__calculate_funding_fees(self, exchange_futures: EXCHANGE_FIXTURE_T
393393
)
394394

395395
assert isinstance(funding_fee, float)
396-
# assert funding_fee > 0
396+
assert funding_fee != 0
397397

398398
def test_ccxt__async_get_trade_history(self, exchange: EXCHANGE_FIXTURE_TYPE):
399399
exch, exchangename = exchange

0 commit comments

Comments
 (0)