From 4dda9c6daab0e5fcd4ff882244c760c0047140fb Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 9 Jul 2023 11:36:13 +0200 Subject: [PATCH] Add explicit test for short-desc --- tests/plugins/test_pairlist.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/plugins/test_pairlist.py b/tests/plugins/test_pairlist.py index bc8fe84f1..cbbf1e6da 100644 --- a/tests/plugins/test_pairlist.py +++ b/tests/plugins/test_pairlist.py @@ -1200,6 +1200,10 @@ def test_spreadfilter_invalid_data(mocker, default_conf, markets, tickers, caplo "[{'ProducerPairList': 'ProducerPairList - default'}]", None ), + ({"method": "RemotePairList", "number_assets": 10, "pairlist_url": "https://example.com"}, + "[{'RemotePairList': 'RemotePairList - 10 pairs from RemotePairlist.'}]", + None + ), ]) def test_pricefilter_desc(mocker, whitelist_conf, markets, pairlistconfig, desc_expected, exception_expected):