Add line break after first open paren in multiline function call (#785)
* Add line break after first open paren in multiline function call as per developer guide: https://index.ros.org/doc/ros2/Contributing/Developer-Guide/#open-versus-cuddled-braces see https://github.com/ament/ament_lint/pull/148 Signed-off-by: Dan Rose <dan@digilabs.io> Fix dedent when first function argument starts with a brace Signed-off-by: Dan Rose <dan@digilabs.io> Line break with multiline if condition Remove line breaks where allowed. Signed-off-by: Dan Rose <dan@digilabs.io> Fixup after rebase Signed-off-by: Dan Rose <dan@digilabs.io> Fixup again after reverting indent_paren_open_brace Signed-off-by: Dan Rose <dan@digilabs.io> * Revert comment spacing change, condense some lines Signed-off-by: Dan Rose <dan@digilabs.io>
This commit is contained in:
parent
dc3c36c7f0
commit
4a5eed968c
41 changed files with 587 additions and 366 deletions
|
@ -60,12 +60,14 @@ TEST_F(TestStateMachineInfo, available_transitions) {
|
|||
for (rclcpp_lifecycle::Transition & transition : available_transitions) {
|
||||
EXPECT_FALSE(transition.label().empty());
|
||||
|
||||
EXPECT_TRUE(transition.start_state().id() <= 4 ||
|
||||
EXPECT_TRUE(
|
||||
transition.start_state().id() <= 4 ||
|
||||
(transition.start_state().id() >= 10 &&
|
||||
(transition.start_state().id() <= 15)));
|
||||
EXPECT_FALSE(transition.start_state().label().empty());
|
||||
|
||||
EXPECT_TRUE(transition.goal_state().id() <= 4 ||
|
||||
EXPECT_TRUE(
|
||||
transition.goal_state().id() <= 4 ||
|
||||
(transition.goal_state().id() >= 10 &&
|
||||
(transition.goal_state().id() <= 15)));
|
||||
EXPECT_FALSE(transition.goal_state().label().empty());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue