We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 826535d commit 0956b83Copy full SHA for 0956b83
LDK/test/src/org/labkey/test/tests/external/labModules/LabModulesTest.java
@@ -1429,7 +1429,7 @@ private void samplesTableTest() throws Exception
1429
String val = row.get(name) == null ? "" : String.valueOf(row.get(name));
1430
if (name.toLowerCase().contains("date"))
1431
{
1432
- val = StringUtils.isEmpty(val) ? "" : ExcelHelper.getDateTimeFormat().format(Date.parse(val));
+ val = StringUtils.isEmpty(val) ? "" : dateFormat.format(Date.parse(val));
1433
}
1434
1435
target.add(val);
0 commit comments