Skip to content

Commit a245858

Browse files
style(pre-commit): autofix
1 parent 08fa457 commit a245858

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

perception/image_projection_based_fusion/test/test_calc_iou_functions.cpp

+8-4
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,21 @@
1313
// limitations under the License.
1414

1515
#include "image_projection_based_fusion/utils/geometry.hpp"
16+
1617
#include <gtest/gtest.h>
1718

1819
using namespace image_projection_based_fusion;
1920

20-
TEST(GeometryTest, CalcIoU) {
21+
TEST(GeometryTest, CalcIoU)
22+
{
2123
sensor_msgs::msg::RegionOfInterest roi1, roi2;
2224

2325
// Overlapping ROIs
2426
roi1.x_offset = 0;
2527
roi1.y_offset = 0;
2628
roi1.width = 4;
2729
roi1.height = 4;
28-
30+
2931
roi2.x_offset = 2;
3032
roi2.y_offset = 2;
3133
roi2.width = 4;
@@ -49,7 +51,8 @@ TEST(GeometryTest, CalcIoU) {
4951
EXPECT_EQ(iou, 0.0);
5052
}
5153

52-
TEST(GeometryTest, CalcIoUX) {
54+
TEST(GeometryTest, CalcIoUX)
55+
{
5356
sensor_msgs::msg::RegionOfInterest roi1, roi2;
5457

5558
// Overlapping ROIs on x-axis
@@ -79,7 +82,8 @@ TEST(GeometryTest, CalcIoUX) {
7982
EXPECT_EQ(ioux, 0.0);
8083
}
8184

82-
TEST(GeometryTest, CalcIoUY) {
85+
TEST(GeometryTest, CalcIoUY)
86+
{
8387
sensor_msgs::msg::RegionOfInterest roi1, roi2;
8488

8589
// Overlapping ROIs on y-axis

0 commit comments

Comments
 (0)