Skip to content

Commit 8657363

Browse files
committed
fix tests
1 parent 67698e4 commit 8657363

File tree

6 files changed

+3
-3
lines changed

6 files changed

+3
-3
lines changed
26.6 KB
Binary file not shown.

dist/wasenderapi-0.2.2.tar.gz

72.3 KB
Binary file not shown.
19 Bytes
Binary file not shown.

tests/test_sessions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import pytest
22
from unittest.mock import Mock, patch, AsyncMock
3-
from wasenderapi import create_async_wasender
3+
from wasenderapi import WasenderAsyncClient,create_async_wasender
44
import json
55
from wasenderapi.models import RateLimitInfo, WasenderSuccessResponse
66
from wasenderapi.sessions import (
@@ -26,7 +26,7 @@
2626

2727
@pytest.fixture
2828
def mock_client_with_async_fetch():
29-
client = WasenderClient("test_api_key")
29+
client = WasenderAsyncClient("test_api_key")
3030
client.fetch_impl = AsyncMock()
3131
return client
3232

0 Bytes
Binary file not shown.

wasenderapi/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.2.1"
1+
__version__ = "0.2.2"

0 commit comments

Comments
 (0)