Commit 8271bd5f authored by Maks Naumov's avatar Maks Naumov

fix condition in CV_OperationsTest::operations1()

parent a8cb5c39
...@@ -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