mirror of https://github.com/apache/poi.git
Tweak 'assertAlmostEquals' bast on Jenkins results
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1588595 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a0c1716260
commit
740c46ef84
|
@ -2493,7 +2493,7 @@ public final class TestBugs extends BaseTestBugzillaIssues {
|
|||
|
||||
// How close the sizing should be, given that not all
|
||||
// systems will have quite the same fonts on them
|
||||
int fontAccuracy = 25;
|
||||
float fontAccuracy = 0.15f;
|
||||
|
||||
// x%
|
||||
CellStyle iPercent = wb.createCellStyle();
|
||||
|
@ -2527,7 +2527,6 @@ public final class TestBugs extends BaseTestBugzillaIssues {
|
|||
}
|
||||
for (int i=0; i<12; i++) {
|
||||
s.autoSizeColumn(i);
|
||||
System.out.println(i + " => " + s.getColumnWidth(i));
|
||||
}
|
||||
|
||||
// Check the 0(.00)% ones
|
||||
|
|
|
@ -40,8 +40,9 @@ public abstract class BaseTestBugzillaIssues {
|
|||
_testDataProvider = testDataProvider;
|
||||
}
|
||||
|
||||
public static void assertAlmostEquals(double expected, double actual, double fuzz) {
|
||||
public static void assertAlmostEquals(double expected, double actual, float factor) {
|
||||
double diff = Math.abs(expected - actual);
|
||||
double fuzz = expected * factor;
|
||||
if (diff > fuzz)
|
||||
fail(actual + " not within " + fuzz + " of " + expected);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue