Skip to content

Commit

Permalink
Fix variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
alfred2g committed Dec 29, 2023
1 parent 97778f7 commit d160103
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions test/test_mqtt5.py
Original file line number Diff line number Diff line change
Expand Up @@ -1121,7 +1121,7 @@ def test_operation_shared_subscription(self):
subscriber2_generic_callback.future_connection_success.result(TIMEOUT)

publisher_client.start()
publisher_callback.future_connection_success.result(TIMEOUT)
publisher_generic_callback.future_connection_success.result(TIMEOUT)
print("All clients connected\n")


Expand All @@ -1147,13 +1147,14 @@ def test_operation_shared_subscription(self):
publish_future.result(TIMEOUT)


subscriber2_client.stop()
callbacks.future_stopped.result(TIMEOUT)
subscriber1_client.stop()
callbacks.future_stopped.result(TIMEOUT)
publisher_client.stop()
publisher_callback.future_stopped.result(TIMEOUT)
subscriber1_generic_callback.future_stopped.result(TIMEOUT)

subscriber2_client.stop()
subscriber2_generic_callback.future_stopped.result(TIMEOUT)

publisher_client.stop()
publisher_generic_callback.future_stopped.result(TIMEOUT)



Expand Down

0 comments on commit d160103

Please sign in to comment.