Index: tests/Matrix44Test.cpp |
diff --git a/tests/Matrix44Test.cpp b/tests/Matrix44Test.cpp |
index 7e31840144076e268f5b587bcd6ab5945e1c660e..ef8c3fce500f7353a006ad781448f0d99908c774 100644 |
--- a/tests/Matrix44Test.cpp |
+++ b/tests/Matrix44Test.cpp |
@@ -416,10 +416,10 @@ static void TestMatrix44(skiatest::Reporter* reporter) { |
// test mixed-valued matrix inverse |
mat.reset(); |
- mat.setScale(1.0e-11, 3.0, 1.0e+11); |
+ mat.setScale(1.0e-10, 3.0, 1.0e+10); |
rot.setRotateDegreesAbout(0, 0, -1, 90); |
mat.postConcat(rot); |
- mat.postTranslate(1.0e+11, 3.0, 1.0e-11); |
+ mat.postTranslate(1.0e+10, 3.0, 1.0e-10); |
REPORTER_ASSERT(reporter, mat.invert(NULL)); |
mat.invert(&inverse); |
iden1.setConcat(mat, inverse); |