From 60d52f0a209520602493124f385716ef0fbfa1d8 Mon Sep 17 00:00:00 2001 From: topscoder <86197446+topscoder@users.noreply.github.com> Date: Fri, 1 Apr 2022 20:57:09 +0200 Subject: [PATCH] Consistent CoinGecko naming in test_fiat_convert.py --- tests/rpc/test_fiat_convert.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/rpc/test_fiat_convert.py b/tests/rpc/test_fiat_convert.py index c87cea259..0dfa20185 100644 --- a/tests/rpc/test_fiat_convert.py +++ b/tests/rpc/test_fiat_convert.py @@ -137,7 +137,7 @@ def test_fiat_too_many_requests_response(mocker, caplog): assert len(fiat_convert._coinlistings) == 0 assert fiat_convert._backoff > datetime.datetime.now().timestamp() assert log_has( - 'Too many requests for Coingecko API, backing off and trying again later.', + 'Too many requests for CoinGecko API, backing off and trying again later.', caplog ) @@ -156,7 +156,7 @@ def test_fiat_multiple_coins(mocker, caplog): assert fiat_convert._get_gekko_id('hnt') is None assert fiat_convert._get_gekko_id('eth') == 'ethereum' - assert log_has('Found multiple mappings in goingekko for hnt.', caplog) + assert log_has('Found multiple mappings in CoinGecko for hnt.', caplog) def test_fiat_invalid_response(mocker, caplog):