cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=c12d60c1e666e983dc62de3897f88515eb931e60
commit c12d60c1e666e983dc62de3897f88515eb931e60 Author: Cedric BAIL <[email protected]> Date: Mon Dec 19 16:29:52 2016 -0800 eina fixup matrix test --- src/tests/eina/eina_test_matrix.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/tests/eina/eina_test_matrix.c b/src/tests/eina/eina_test_matrix.c index bfdafbf..e4b566a 100644 --- a/src/tests/eina/eina_test_matrix.c +++ b/src/tests/eina/eina_test_matrix.c @@ -760,12 +760,12 @@ START_TEST(eina_matrix3_map_transform) ret = eina_matrix3_square_quad_map(&m, &q); fail_if(ret != EINA_TRUE); - fail_if(MATRIX3_CMP(m.xx, m.xy, m.xz, - m.yx, m.yy, m.yz, - m.zx, m.zy, m.zz, - 3, 0, 0, - 0, 3, 0, - 0, 0, 1)); + fail_if(!MATRIX3_CMP(m.xx, m.xy, m.xz, + m.yx, m.yy, m.yz, + m.zx, m.zy, m.zz, + 3, 0, 0, + 0, 3, 0, + 0, 0, 1)); ret = eina_matrix3_quad_square_map(&m, &q); fail_if(ret != EINA_TRUE); --
