(loop: asyncio.AbstractEventLoop)
| 115 | |
| 116 | @pytest.fixture() |
| 117 | def out(loop: asyncio.AbstractEventLoop) -> WebSocketDataQueue: |
| 118 | return WebSocketDataQueue(mock.Mock(_reading_paused=False), 2**16, loop=loop) |
| 119 | |
| 120 | |
| 121 | @pytest.fixture() |
nothing calls this directly
no test coverage detected