Skip to content

Commit 18ca3d1

Browse files
committed
error message fixed
1 parent 2457bfc commit 18ca3d1

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

modules/imgproc/test/test_color.cpp

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2408,16 +2408,15 @@ TEST(Imgproc_ColorLab_Full, bitExactness)
24082408
{
24092409
next = false;
24102410

2411-
FAIL() << "Bad accuracy" << endl;
2412-
2413-
FAIL() << "Conversion code: " << names[c] << endl;
2414-
FAIL() << "Iteration: " << iter << endl;
2415-
FAIL() << "Hash vs Correct hash: " << h << ", " << goodHash << endl;
2416-
FAIL() << "Error in: (" << x << ", " << y << ")" << endl;
2417-
FAIL() << "Reference value: " << gx[0] << " " << gx[1] << " " << gx[2] << endl;
2418-
FAIL() << "Actual value: " << rx[0] << " " << rx[1] << " " << rx[2] << endl;
2419-
FAIL() << "Src value: " << px[0] << " " << px[1] << " " << px[2] << endl;
2420-
FAIL() << "Size: (" << probe.rows << ", " << probe.cols << ")" << endl;
2411+
FAIL() << "Bad accuracy" << endl
2412+
<< "Conversion code: " << names[c] << endl
2413+
<< "Iteration: " << iter << endl
2414+
<< "Hash vs Correct hash: " << h << ", " << goodHash << endl
2415+
<< "Error in: (" << x << ", " << y << ")" << endl
2416+
<< "Reference value: " << gx[0] << " " << gx[1] << " " << gx[2] << endl
2417+
<< "Actual value: " << rx[0] << " " << rx[1] << " " << rx[2] << endl
2418+
<< "Src value: " << px[0] << " " << px[1] << " " << px[2] << endl
2419+
<< "Size: (" << probe.rows << ", " << probe.cols << ")" << endl;
24212420

24222421
break;
24232422
}

0 commit comments

Comments
 (0)