File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
tests/socketio_app/namespaces Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ def chat_namespace():
10
10
return ChatNamespace ("/chat" )
11
11
12
12
13
- @pytest .mark .asyncio
14
13
async def test_on_connect (chat_namespace ):
15
14
sid = "test_session_id"
16
15
environ = {}
@@ -19,7 +18,6 @@ async def test_on_connect(chat_namespace):
19
18
chat_namespace .on_connect (sid , environ )
20
19
21
20
22
- @pytest .mark .asyncio
23
21
async def test_on_disconnect (chat_namespace ):
24
22
sid = "test_session_id"
25
23
reason = "test_reason"
@@ -28,7 +26,6 @@ async def test_on_disconnect(chat_namespace):
28
26
chat_namespace .on_disconnect (sid , reason )
29
27
30
28
31
- @pytest .mark .asyncio
32
29
async def test_on_echo_message (chat_namespace ):
33
30
sid = "test_session_id"
34
31
test_data = {"message" : "Hello, World!" }
You can’t perform that action at this time.
0 commit comments