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():
1010 return ChatNamespace ("/chat" )
1111
1212
13- @pytest .mark .asyncio
1413async def test_on_connect (chat_namespace ):
1514 sid = "test_session_id"
1615 environ = {}
@@ -19,7 +18,6 @@ async def test_on_connect(chat_namespace):
1918 chat_namespace .on_connect (sid , environ )
2019
2120
22- @pytest .mark .asyncio
2321async def test_on_disconnect (chat_namespace ):
2422 sid = "test_session_id"
2523 reason = "test_reason"
@@ -28,7 +26,6 @@ async def test_on_disconnect(chat_namespace):
2826 chat_namespace .on_disconnect (sid , reason )
2927
3028
31- @pytest .mark .asyncio
3229async def test_on_echo_message (chat_namespace ):
3330 sid = "test_session_id"
3431 test_data = {"message" : "Hello, World!" }
You can’t perform that action at this time.
0 commit comments