We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a26530 commit 77c5ae1Copy full SHA for 77c5ae1
2 files changed
mpesakit/http_client/http_client.py
@@ -1,7 +1,6 @@
1
"""http_client.py: Defines an abstract base HTTP client class for making HTTP requests.
2
3
-Error handling for both synchronous ans Asynchronous clients
4
-
+Error handling for both synchronous and asynchronous clients
5
Provides a reusable interface for GET and POST requests.
6
"""
7
tests/unit/mpesa_express/test_stk_push.py
@@ -380,7 +380,6 @@ async def test_async_stk_push_multiple_times(mock_async_token_manager):
380
if str(result.ResponseCode) == "0":
381
success_count += 1
382
383
- assert success_count == 100
384
- assert mock_send.call_count == 100
+ assert success_count == 100
+ assert mock_send.call_count == 100
385
386
- await client.aclose()
0 commit comments