Commit 4c2db3d6 authored by Roman Donchenko's avatar Roman Donchenko Committed by OpenCV Buildbot

Merge pull request #2579 from maksqwe:test_operations_fix

parents 8ab22474 8271bd5f
...@@ -965,7 +965,7 @@ bool CV_OperationsTest::operations1() ...@@ -965,7 +965,7 @@ bool CV_OperationsTest::operations1()
Vec<double,10> v10dzero; Vec<double,10> v10dzero;
for (int ii = 0; ii < 10; ++ii) { for (int ii = 0; ii < 10; ++ii) {
if (!v10dzero[ii] == 0.0) if (v10dzero[ii] != 0.0)
throw test_excep(); throw test_excep();
} }
......
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