Skip to content

Commit 352397c

Browse files
committed
Correct overindented code
Signed-off-by: Ivan Santiago Paunovic <[email protected]>
1 parent ad8c337 commit 352397c

File tree

1 file changed

+2
-2
lines changed
  • launch_testing/launch_testing/pytest

1 file changed

+2
-2
lines changed

launch_testing/launch_testing/pytest/plugin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,8 @@ def is_launch_test_mark_valid(item):
150150
ret = 'fixture' in kwargs and kwargs['fixture'] is not None
151151
if not ret:
152152
msg = (
153-
'"fixture" keyword argument is required in a pytest.mark.launch_testing() '
154-
f'decorator')
153+
'"fixture" keyword argument is required in a pytest.mark.launch_testing() '
154+
f'decorator')
155155
item.warn(LaunchTestWarning(msg))
156156
item.add_marker(pytest.mark.skip(msg))
157157
return ret

0 commit comments

Comments
 (0)