Skip to content
Snippets Groups Projects
Commit 58af26b9 authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Pre-merge code cleanup

parent 26b8ec13
No related branches found
No related tags found
2 merge requests!359Release TeraFlowSDN 5.0,!330Resolve "(NAUDIT) SmartNIC support"
......@@ -71,7 +71,7 @@ def test_set_config(driver: MorpheusApiDriver):
assert results[0] is True, "Expected a succesfull result"
def test_retrieve_state(driver: MorpheusApiDriver):
results = driver.SubscribeState()
results = driver.SubscribeState([])
assert all(isinstance(result, bool) and result for result in results), \
f"Subscription error: {results}"
......@@ -83,7 +83,7 @@ def test_retrieve_state(driver: MorpheusApiDriver):
print_data("State", state)
results = driver.UnsubscribeState()
results = driver.UnsubscribeState([])
assert all(isinstance(result, bool) and result for result in results), \
f"Unsubscription error: {results}"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment