diff options
| -rw-r--r-- | packages/PrintSpooler/tests/outofprocess/src/com/android/printspooler/outofprocess/tests/WorkflowTest.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/PrintSpooler/tests/outofprocess/src/com/android/printspooler/outofprocess/tests/WorkflowTest.java b/packages/PrintSpooler/tests/outofprocess/src/com/android/printspooler/outofprocess/tests/WorkflowTest.java index 184e55962766..888fedbe5ab7 100644 --- a/packages/PrintSpooler/tests/outofprocess/src/com/android/printspooler/outofprocess/tests/WorkflowTest.java +++ b/packages/PrintSpooler/tests/outofprocess/src/com/android/printspooler/outofprocess/tests/WorkflowTest.java @@ -154,16 +154,16 @@ public class WorkflowTest extends BasePrintTest { @AfterClass public static void enableAnimations() throws Exception { - if (sWindowAnimationScaleBefore != Float.NaN) { + if (!Float.isNaN(sWindowAnimationScaleBefore)) { runShellCommand( "settings put global window_animation_scale " + sWindowAnimationScaleBefore); } - if (sTransitionAnimationScaleBefore != Float.NaN) { + if (!Float.isNaN(sTransitionAnimationScaleBefore)) { runShellCommand( "settings put global transition_animation_scale " + sTransitionAnimationScaleBefore); } - if (sAnimatiorDurationScaleBefore != Float.NaN) { + if (!Float.isNaN(sAnimatiorDurationScaleBefore)) { runShellCommand( "settings put global animator_duration_scale " + sAnimatiorDurationScaleBefore); } |