Skip to content

Commit 0956b83

Browse files
committed
Debug test failure
1 parent 826535d commit 0956b83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

LDK/test/src/org/labkey/test/tests/external/labModules/LabModulesTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1429,7 +1429,7 @@ private void samplesTableTest() throws Exception
14291429
String val = row.get(name) == null ? "" : String.valueOf(row.get(name));
14301430
if (name.toLowerCase().contains("date"))
14311431
{
1432-
val = StringUtils.isEmpty(val) ? "" : ExcelHelper.getDateTimeFormat().format(Date.parse(val));
1432+
val = StringUtils.isEmpty(val) ? "" : dateFormat.format(Date.parse(val));
14331433
}
14341434

14351435
target.add(val);

0 commit comments

Comments
 (0)