BATCH-2134: Spring Batch 3.0.0.M2 failed to build in Windows environment

This commit is contained in:
Chris Schaefer
2013-11-19 13:52:07 -05:00
parent fb7582a54f
commit 416033299f

View File

@@ -137,7 +137,7 @@ public class JobPropertySubstitutionTests {
public Object processItem(Object item) throws Exception {
assertEquals("testParamValue", processorProperty1);
assertEquals("myfile1.txt", processorProperty2);
assertEquals("/myfile2.txt", processorProperty3);
assertEquals(System.getProperty("file.separator") + "myfile2.txt", processorProperty3);
return item;
}