Commit db5f1c35 authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #16688 from alalek:issue_16679

parents 9c4b1d0a e93c5176
...@@ -160,8 +160,8 @@ TEST_P(MulDoubleTest, AccuracyTest) ...@@ -160,8 +160,8 @@ TEST_P(MulDoubleTest, AccuracyTest)
CV_MAT_DEPTH(out_mat_ocv.type()) != CV_64F) CV_MAT_DEPTH(out_mat_ocv.type()) != CV_64F)
{ {
// integral: allow 1% of differences, and no diffs by >1 unit // integral: allow 1% of differences, and no diffs by >1 unit
EXPECT_LE(cvtest::norm(out_mat_gapi, out_mat_ocv, NORM_INF), 1);
EXPECT_LE(cvtest::norm(out_mat_gapi, out_mat_ocv, NORM_L1 | NORM_RELATIVE), 0.01); EXPECT_LE(cvtest::norm(out_mat_gapi, out_mat_ocv, NORM_L1 | NORM_RELATIVE), 0.01);
EXPECT_LE(cvtest::norm(out_mat_gapi, out_mat_ocv, NORM_L1), 1);
} }
else else
{ {
......
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