Skip to content

Commit a8e51ba

Browse files
committed
Fixed incorrect asyncio test marker warnings.
Refs #321 which did the same for the non-sentinel version.
1 parent 6d0c6c0 commit a8e51ba

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

tests/test_pubsub_sentinel.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ async def test_send_receive(channel_layer):
3333
assert message["text"] == "Ahoy-hoy!"
3434

3535

36-
@pytest.mark.asyncio
3736
def test_send_receive_sync(channel_layer, event_loop):
3837
_await = event_loop.run_until_complete
3938
channel = _await(channel_layer.new_channel())
@@ -59,7 +58,6 @@ async def test_multi_send_receive(channel_layer):
5958
assert (await channel_layer.receive(channel))["type"] == "message.3"
6059

6160

62-
@pytest.mark.asyncio
6361
def test_multi_send_receive_sync(channel_layer, event_loop):
6462
_await = event_loop.run_until_complete
6563
channel = _await(channel_layer.new_channel())

0 commit comments

Comments
 (0)