From 3fea958faf930e28606189551f38a74cf6bf51ff Mon Sep 17 00:00:00 2001 From: Axel-CH Date: Tue, 24 Sep 2024 13:47:28 -0400 Subject: [PATCH] test cleanup --- tests/freqtradebot/test_integration.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/freqtradebot/test_integration.py b/tests/freqtradebot/test_integration.py index e65225e4e..4f4a79864 100644 --- a/tests/freqtradebot/test_integration.py +++ b/tests/freqtradebot/test_integration.py @@ -480,8 +480,6 @@ def test_dca_order_adjust(default_conf_usdt, ticker_usdt, leverage, fee, mocker, assert pytest.approx(trade.orders[-1].amount) == 91.689215 * leverage assert freqtrade.strategy.adjust_entry_price.call_count == 0 - caplog.clear() - caplog.set_level(logging.DEBUG) # Process again, should not adjust entry price freqtrade.process() trade = Trade.get_trades().first()