Loading src/device/tests/test_unitary_morpheus.py +2 −2 Original line number Diff line number Diff line Loading @@ -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}" Loading @@ -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}" Loading
src/device/tests/test_unitary_morpheus.py +2 −2 Original line number Diff line number Diff line Loading @@ -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}" Loading @@ -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}"