From 997d6f855cd3961062b5a018e253605ccf899837 Mon Sep 17 00:00:00 2001 From: dsyer Date: Fri, 12 Oct 2007 13:50:52 +0000 Subject: [PATCH] Remove syserr debug statements from unit test --- .../execution/facade/BatchResourceFactoryBeanTests.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/execution/src/test/java/org/springframework/batch/execution/facade/BatchResourceFactoryBeanTests.java b/execution/src/test/java/org/springframework/batch/execution/facade/BatchResourceFactoryBeanTests.java index 1b311a5ee..5f334db45 100644 --- a/execution/src/test/java/org/springframework/batch/execution/facade/BatchResourceFactoryBeanTests.java +++ b/execution/src/test/java/org/springframework/batch/execution/facade/BatchResourceFactoryBeanTests.java @@ -143,7 +143,6 @@ public class BatchResourceFactoryBeanTests extends TestCase { String rootDir = getRootDir(); rootDir = "/"+StringUtils.replace(rootDir, File.separator, "\\") + "\\"; resourceFactory.setRootDirectory(rootDir); - // TODO: this one fails on UNIX (so Bamboo)... doTestPathName("testJob-testStream-11-20070730-bar.txt", path); } @@ -154,9 +153,8 @@ public class BatchResourceFactoryBeanTests extends TestCase { String absolutePath = new File("/" + rootDir + pathsep + path + identifier.getName() + pathsep + filename).getAbsolutePath(); - System.err.println(path); - System.err.println(absolutePath); - System.err.println(returnedPath); + // System.err.println(absolutePath); + // System.err.println(returnedPath); assertEquals(absolutePath, returnedPath); }