fix condition in CV_OperationsTest::operations1()

This commit is contained in:
Maks Naumov 2014-04-07 11:24:27 +03:00
parent a8cb5c3983
commit 8271bd5f14

View File

@ -965,7 +965,7 @@ bool CV_OperationsTest::operations1()
Vec<double,10> v10dzero;
for (int ii = 0; ii < 10; ++ii) {
if (!v10dzero[ii] == 0.0)
if (v10dzero[ii] != 0.0)
throw test_excep();
}