From efaf03bf96bdde4fc48ca7aacb1043bb5ae09b74 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Sat, 8 Dec 2018 00:05:03 +0100 Subject: Fix noise in lu unit test --- test/lu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/lu.cpp') diff --git a/test/lu.cpp b/test/lu.cpp index effde6060..24bea784a 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); -- cgit v1.2.3