diff options
Diffstat (limited to 'tests/conftest.py')
-rw-r--r-- | tests/conftest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/conftest.py b/tests/conftest.py index 954de87..46dd6fe 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -165,7 +165,7 @@ def workspace(): channel_public_future = Future[SlackConversation]() w.conversations[channel_public_id] = channel_public_future - channel_public = SlackConversation.create_from_info(w, channel_public_info) + channel_public = SlackConversation(w, channel_public_info) try: channel_public.send(None) except StopIteration as e: |