Skip to content

Commit ef4cbd7

Browse files
committed
format
1 parent c4fad15 commit ef4cbd7

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

src/example_robot_wrapper.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ ExampleRobotWrapper::ExampleRobotWrapper(const std::string& robot_ip, const std:
5757
const std::string& autostart_program, const std::string& script_file)
5858
: headless_mode_(headless_mode), autostart_program_(autostart_program)
5959
{
60-
6160
UrDriverConfiguration driver_config;
6261
driver_config.robot_ip = robot_ip;
6362
driver_config.script_file = script_file;
@@ -115,7 +114,6 @@ void ExampleRobotWrapper::initInternal(const UrDriverConfiguration& driver_confi
115114
throw UrException("Program did not start running. Is the robot in remote control?");
116115
}
117116
}
118-
119117
}
120118

121119
ExampleRobotWrapper::~ExampleRobotWrapper()

tests/test_ur_driver.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ class UrDriverTest : public ::testing::Test
9595
GTEST_SKIP_("Running URCap tests for PolyScope X is currently not supported.");
9696
}
9797
// Setup driver
98-
g_my_robot = std::make_unique<ExampleRobotWrapper>(g_ROBOT_IP, OUTPUT_RECIPE_VECTOR, INPUT_RECIPE_VECTOR, g_HEADLESS,
99-
"external_control.urp", SCRIPT_FILE);
98+
g_my_robot = std::make_unique<ExampleRobotWrapper>(g_ROBOT_IP, OUTPUT_RECIPE_VECTOR, INPUT_RECIPE_VECTOR,
99+
g_HEADLESS, "external_control.urp", SCRIPT_FILE);
100100

101101
g_my_robot->startRTDECommununication(true);
102102
}

0 commit comments

Comments
 (0)