RESTRICT AUTOMERGE Lower the float comparison precision

Change the epsilon for float comparisons to be 0.01
in PiP CTS tests.

The precision will be increased back in U+ builds later on
since a forward fix was merged onto udc-dev at ag/23543260

Bug: 285189902
Bug: 283500710

Test: atest PinnedStackTests
Change-Id: I99ac9858d2060a8d07e157b86b98da47052c0a41
diff --git a/tests/framework/base/windowmanager/src/android/server/wm/PinnedStackTests.java b/tests/framework/base/windowmanager/src/android/server/wm/PinnedStackTests.java
index cd1fcda..f994fec 100644
--- a/tests/framework/base/windowmanager/src/android/server/wm/PinnedStackTests.java
+++ b/tests/framework/base/windowmanager/src/android/server/wm/PinnedStackTests.java
@@ -161,7 +161,7 @@
     private static final int ROTATION_180 = 2;
     private static final int ROTATION_270 = 3;
 
-    private static final float FLOAT_COMPARE_EPSILON = 0.005f;
+    private static final float FLOAT_COMPARE_EPSILON = 0.01f;
 
     // Corresponds to com.android.internal.R.dimen.config_pictureInPictureMinAspectRatio
     private static final int MIN_ASPECT_RATIO_NUMERATOR = 100;