Author: lfryc(a)redhat.com
Date: 2011-01-27 08:16:30 -0500 (Thu, 27 Jan 2011)
New Revision: 21275
Modified:
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richTooltip/TestTooltipSimple.java
Log:
added issue tracking for RF-10333 and increased bound for maxDeviation to 250
Modified:
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richTooltip/TestTooltipSimple.java
===================================================================
---
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richTooltip/TestTooltipSimple.java 2011-01-27
13:15:50 UTC (rev 21274)
+++
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richTooltip/TestTooltipSimple.java 2011-01-27
13:16:30 UTC (rev 21275)
@@ -181,12 +181,12 @@
}
@Test
+ @IssueTracking("https://issues.jboss.org/browse/RF-10333")
public void testExecute() {
attributes.setExecute("@this executeChecker");
attributes.setMode(TooltipMode.ajax);
tooltip.recall();
-
phaseInfo.assertListener(UPDATE_MODEL_VALUES, "executeChecker");
}
@@ -223,7 +223,7 @@
delay = System.currentTimeMillis() - delay;
long deviation = Math.abs(presetDelay - delay);
- long maxDeviation = Math.max(200, presetDelay / 2);
+ long maxDeviation = Math.max(250, presetDelay / 2);
assertTrue(deviation < maxDeviation,
format("deviation '{0}' is greater than maxDeviation
'{1}'", deviation, maxDeviation));
Show replies by date