Fixing miniconf API after updates
This commit is contained in:
parent
bfbe807690
commit
e478dfc70f
|
@ -131,8 +131,7 @@ def main():
|
||||||
# Configure the stream
|
# Configure the stream
|
||||||
print(f'Configuring stream to target {".".join(map(str, local_ip))}:{args.port}')
|
print(f'Configuring stream to target {".".join(map(str, local_ip))}:{args.port}')
|
||||||
print('')
|
print('')
|
||||||
assert (await interface.command('stream_target',
|
await interface.command('stream_target', {'ip': local_ip, 'port': args.port})
|
||||||
{'ip': local_ip, 'port': args.port}))['code'] == 0
|
|
||||||
|
|
||||||
# Verify frame reception
|
# Verify frame reception
|
||||||
print('Testing stream reception')
|
print('Testing stream reception')
|
||||||
|
@ -146,8 +145,7 @@ def main():
|
||||||
# Disable the stream.
|
# Disable the stream.
|
||||||
print('Closing stream')
|
print('Closing stream')
|
||||||
print('')
|
print('')
|
||||||
assert (await interface.command('stream_target',
|
await interface.command('stream_target', {'ip': [0, 0, 0, 0], 'port': 0})
|
||||||
{'ip': [0, 0, 0, 0], 'port': 0}))['code'] == 0
|
|
||||||
stream.clear()
|
stream.clear()
|
||||||
|
|
||||||
print('Verifying no further data is received')
|
print('Verifying no further data is received')
|
||||||
|
|
Loading…
Reference in New Issue