sta_connect_example: Remove invalid comparisons

Signed-off-by: Matthew Stidham <stidmatt@gmail.com>
This commit is contained in:
Matthew Stidham
2021-11-16 11:03:14 -08:00
parent 7d32906c82
commit 69a75872a4

View File

@@ -65,7 +65,7 @@ def main():
#staConnect.finish()
staConnect.cleanup()
is_passing = staConnect.passes()
if is_passing == False:
if not is_passing:
# run_results = staConnect.get_failed_result_list()
fail_message = staConnect.get_fail_message()
print("Some tests failed:\n" + fail_message)