Skip to content

Commit 0dd4539

Browse files
committed
fix format
1 parent 4a7e5bc commit 0dd4539

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

moveit_core/robot_model/test/test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,15 +229,15 @@ TEST(PlanarJointTest, InterpolateDiffDriveNoNan)
229229
{ "Straight line along X", { 0.0, 0.0, 0.0 }, { 0.1, 0.0, 0.0 } },
230230
{ "Straight line along Y", { 0.0, 0.0, M_PI / 2 }, { 0.0, 0.1, M_PI / 2 } },
231231
{ "180 degree turn in place", { 0.0, 0.0, 0.0 }, { 0.0, 0.0, M_PI } },
232-
{ "360 degree turn in place", { 0.0, 0.0, -M_PI}, { 0.0, 0.0, M_PI} },
232+
{ "360 degree turn in place", { 0.0, 0.0, -M_PI }, { 0.0, 0.0, M_PI } },
233233
{ "Diagonal movement", { 0.0, 0.0, -M_PI / 4 }, { 0.1, -0.1, -M_PI / 4 } },
234234
{ "Complex move", { 0.5, 1.0, -M_PI / 2 }, { -0.7, -1.0, M_PI / 3 } }
235235
};
236236

237237
// Test interpolation for each case and check for NaN values
238238
for (const auto& test_case : test_cases)
239239
{
240-
for (double t: { 0.0, 0.5, 1.0 })
240+
for (double t : { 0.0, 0.5, 1.0 })
241241
{
242242
double state[3];
243243
pjm.interpolate(test_case.from, test_case.to, t, state);

0 commit comments

Comments
 (0)