File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1010import aiohttp
1111import pytest
1212from aiohttp .http_exceptions import HttpProcessingError
13- from tqdm import tqdm
13+ from tldm import tldm
1414
1515from sqlite_export_for_ynab import default_db_path
1616from sqlite_export_for_ynab ._main import _ALL_RELATIONS
@@ -412,7 +412,7 @@ async def test_progress_ynab_client_ok(mock_aioresponses):
412412 expected = {"example" : [{"id" : 1 , "value" : 2 }, {"id" : 3 , "value" : 4 }]}
413413 mock_aioresponses .get (EXAMPLE_ENDPOINT_RE , body = json .dumps ({"data" : expected }))
414414
415- with tqdm (disable = True ) as pbar :
415+ with tldm (disable = True ) as pbar :
416416 async with aiohttp .ClientSession (loop = asyncio .get_event_loop ()) as session :
417417 pyc = ProgressYnabClient (YnabClient (TOKEN , session ), pbar )
418418 entries = await pyc ("example" )
You can’t perform that action at this time.
0 commit comments