Skip to content

Commit

Permalink
mavsdk_tests: fix missing space after number
Browse files Browse the repository at this point in the history
  • Loading branch information
julianoes committed Mar 17, 2020
1 parent 7ff3ac0 commit 8828a8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/mavsdk_tests/mavsdk_test_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ def note_if_any(text_to_format: str, n: int, total: int) -> Optional[str]:
elif n == 1 and total == 1:
return text_to_format.format("")
else:
return text_to_format.format(n)
return text_to_format.format(str(n) + " ")

def sigint_handler(self, sig: signal.Signals, frame: FrameType) \
-> NoReturn:
Expand Down

0 comments on commit 8828a8f

Please sign in to comment.