Commit 58af26b9 authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Pre-merge code cleanup

parent 26b8ec13
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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}"