From c285ed1033e3d168cbc9bd16943cac37c217e719 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Sat, 8 Dec 2018 00:05:38 +0100 Subject: [PATCH] Fix noise in lu unit test --- test/lu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lu.cpp b/test/lu.cpp index 7c3872b40..176a2f090 100644 --- a/test/lu.cpp +++ b/test/lu.cpp @@ -90,7 +90,7 @@ template void lu_non_invertible() VERIFY(!lu.isInjective()); VERIFY(!lu.isInvertible()); VERIFY(!lu.isSurjective()); - VERIFY((m1 * m1kernel).isMuchSmallerThan(m1)); + VERIFY_IS_MUCH_SMALLER_THAN((m1 * m1kernel), m1); VERIFY(m1image.fullPivLu().rank() == rank); VERIFY_IS_APPROX(m1 * m1.adjoint() * m1image, m1image);