aboutsummaryrefslogtreecommitdiffstats
path: root/tests/conftest.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/conftest.py')
-rw-r--r--tests/conftest.py2
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: