test_noise_connection: fix missing nursery
This commit is contained in:
parent
897e66b7e1
commit
23ece34157
|
@ -3,6 +3,9 @@ import pytest
|
|||
from libp2p.tools.factories import noise_conn_factory
|
||||
|
||||
|
||||
DATA = b"testing_123"
|
||||
|
||||
|
||||
@pytest.mark.trio
|
||||
async def test_noise_transport(nursery):
|
||||
async with noise_conn_factory(nursery):
|
||||
|
@ -10,6 +13,9 @@ async def test_noise_transport(nursery):
|
|||
|
||||
|
||||
@pytest.mark.trio
|
||||
async def test_noise_connection():
|
||||
async with noise_conn_factory() as conns:
|
||||
async def test_noise_connection(nursery):
|
||||
async with noise_conn_factory(nursery) as conns:
|
||||
local_conn, remote_conn = conns
|
||||
await local_conn.write(DATA)
|
||||
read_data = await remote_conn.read(len(DATA))
|
||||
assert read_data == DATA
|
||||
|
|
Loading…
Reference in New Issue
Block a user