8 lines
99 B
Python
8 lines
99 B
Python
|
import pytest
|
||
|
|
||
|
|
||
|
@pytest.fixture()
|
||
|
def loop(event_loop):
|
||
|
""" Shortcut """
|
||
|
return event_loop
|