Adjust expected font-size in tests, XSSF seems to use slightly larger fonts on some machines

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1780479 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dominik Stadler 2017-01-26 20:59:49 +00:00
parent 30071927f8
commit db600cf0b4
1 changed files with 2 additions and 2 deletions

View File

@ -1378,8 +1378,8 @@ public abstract class BaseTestSheet {
s.autoSizeColumn((short)0);
s.autoSizeColumn((short)1);
assertBetween("Date column width", s.getColumnWidth(0), 4750, 7200);
assertBetween("Date column width", s.getColumnWidth(1), 4750, 7200);
assertBetween("Date column width", s.getColumnWidth(0), 4750, 7300);
assertBetween("Date column width", s.getColumnWidth(1), 4750, 7300);
wb.close();
}