Skip to content

Commit

Permalink
Reformat a change from #42
Browse files Browse the repository at this point in the history
  • Loading branch information
felixdivo committed Jun 18, 2024
1 parent 89e44d3 commit d041f97
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ros2_easy_test/ros2_easy_test/decorators.py
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,9 @@ def wrapper(*args_inner, **kwargs_inner) -> None:
return_code = ros2_process.wait(timeout=shutdown_timeout / 2)

# Check return codes
return_code_problematic = acceptable_return_codes and return_code not in acceptable_return_codes
return_code_problematic = (
acceptable_return_codes and return_code not in acceptable_return_codes
)

if return_code_problematic:
if test_function_exception is None:
Expand Down

0 comments on commit d041f97

Please sign in to comment.