From e88af54016a54902c440bfd3c40972f2886828d4 Mon Sep 17 00:00:00 2001 From: Ziv <16467659+ziv1234@users.noreply.github.com> Date: Sat, 11 Apr 2020 16:26:54 +0300 Subject: [PATCH] Fix docstring in test_util/aiohttp.py (#34024) --- tests/test_util/aiohttp.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/test_util/aiohttp.py b/tests/test_util/aiohttp.py index 55bfd79143d..23112de5558 100644 --- a/tests/test_util/aiohttp.py +++ b/tests/test_util/aiohttp.py @@ -295,7 +295,12 @@ def mock_aiohttp_client(): class MockLongPollSideEffect: - """Imitate a long_poll request. Once created, actual responses are queued and if queue is empty, will await until done.""" + """Imitate a long_poll request. + + It should be created and used as a side effect for a GET/PUT/etc. request. + Once created, actual responses are queued with queue_response + If queue is empty, will await until done. + """ def __init__(self): """Initialize the queue."""