Commit 56a0a50d authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #8603 from alalek:fix_test_name

parents c744eff3 dd304dbe
......@@ -447,8 +447,8 @@ OCL_TEST_P(Min, Mat)
{
generateTestData();
OCL_OFF(cv::max(src1_roi, src2_roi, dst1_roi));
OCL_ON(cv::max(usrc1_roi, usrc2_roi, udst1_roi));
OCL_OFF(cv::min(src1_roi, src2_roi, dst1_roi));
OCL_ON(cv::min(usrc1_roi, usrc2_roi, udst1_roi));
Near(0);
}
}
......@@ -461,8 +461,8 @@ OCL_TEST_P(Max, Mat)
{
generateTestData();
OCL_OFF(cv::min(src1_roi, src2_roi, dst1_roi));
OCL_ON(cv::min(usrc1_roi, usrc2_roi, udst1_roi));
OCL_OFF(cv::max(src1_roi, src2_roi, dst1_roi));
OCL_ON(cv::max(usrc1_roi, usrc2_roi, udst1_roi));
Near(0);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment