From 7b707a051ab024457e9c465a9538e7dae3a09a56 Mon Sep 17 00:00:00 2001 From: AleksandrPanov Date: Fri, 15 Apr 2022 17:58:47 +0300 Subject: [PATCH] fix ArucoThreading test --- modules/aruco/test/test_arucodetection.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/aruco/test/test_arucodetection.cpp b/modules/aruco/test/test_arucodetection.cpp index 732c2a9dcbc..6e41050470e 100644 --- a/modules/aruco/test/test_arucodetection.cpp +++ b/modules/aruco/test/test_arucodetection.cpp @@ -766,8 +766,8 @@ TEST_P(ArucoThreading, number_of_threads_does_not_change_results) cv::aruco::detectMarkers(img, dictionary, original_corners, original_ids, params); } - ASSERT_EQ(original_ids.size(), 1); - ASSERT_EQ(original_corners.size(), 1); + ASSERT_EQ(original_ids.size(), 1ull); + ASSERT_EQ(original_corners.size(), 1ull); int num_threads_to_test[] = { 2, 8, 16, 32, height_img-1, height_img, height_img+1}; @@ -779,7 +779,7 @@ TEST_P(ArucoThreading, number_of_threads_does_not_change_results) cv::aruco::detectMarkers(img, dictionary, corners, ids, params); // If we don't find any markers, the test is broken - ASSERT_EQ(ids.size(), 1); + ASSERT_EQ(ids.size(), 1ull); // Make sure we got the same result as the first time ASSERT_EQ(corners.size(), original_corners.size());