Skip to content

Commit 9547a81

Browse files
committed
Remove pytest marks
1 parent 6ed15b8 commit 9547a81

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

tests/socketio_app/namespaces/test_chat.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ def chat_namespace():
1010
return ChatNamespace("/chat")
1111

1212

13-
@pytest.mark.asyncio
1413
async 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
2321
async 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
3229
async def test_on_echo_message(chat_namespace):
3330
sid = "test_session_id"
3431
test_data = {"message": "Hello, World!"}

0 commit comments

Comments
 (0)