Skip to content
Snippets Groups Projects
Commit 70b5a268 authored by Jan David Mol's avatar Jan David Mol
Browse files

L2SS-412: get_root_node is not a coroutine

parent 74476a49
No related branches found
No related tags found
1 merge request!142L2SS-412: Use asyncio for opcua and other clients
......@@ -25,7 +25,7 @@ class TestSDPTRSim(base.IntegrationAsyncTestCase):
try:
await client.connect()
root_node = await client.get_root_node()
root_node = client.get_root_node()
finally:
await client.disconnect()
......
......@@ -26,7 +26,7 @@ class TestUNB2Sim(base.IntegrationAsyncTestCase):
await client.connect()
try:
root_node = await client.get_root_node()
root_node = client.get_root_node()
finally:
await client.disconnect()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment