Fix #2025: XLSX tests locale dependency

This commit is contained in:
Antonin Delpeuch 2019-05-15 11:49:53 +01:00
parent 04af293481
commit b366b29da1

View File

@ -149,7 +149,7 @@ public class XlsxExporterTests extends RefineTest {
XSSFSheet ws = wb.getSheetAt(0); XSSFSheet ws = wb.getSheetAt(0);
XSSFRow row1 = ws.getRow(1); XSSFRow row1 = ws.getRow(1);
XSSFCell cell0 = row1.getCell(0); XSSFCell cell0 = row1.getCell(0);
Assert.assertEquals(cell0.toString(),"09-Apr-2019"); Assert.assertTrue(cell0.toString().contains("2019"));
wb.close(); wb.close();
} catch (IOException e) { } catch (IOException e) {
Assert.fail(); Assert.fail();