From 2030c270ca79220280397475ef27f7a3660c4166 Mon Sep 17 00:00:00 2001 From: David Turanski Date: Wed, 27 Feb 2013 19:24:24 -0500 Subject: [PATCH] pulled system.out from StepScopeIntegrationTests.java --- .../batch/core/scope/StepScopeIntegrationTests.java | 1 - 1 file changed, 1 deletion(-) diff --git a/spring-batch-core/src/test/java/org/springframework/batch/core/scope/StepScopeIntegrationTests.java b/spring-batch-core/src/test/java/org/springframework/batch/core/scope/StepScopeIntegrationTests.java index 196953fa5..30468194a 100644 --- a/spring-batch-core/src/test/java/org/springframework/batch/core/scope/StepScopeIntegrationTests.java +++ b/spring-batch-core/src/test/java/org/springframework/batch/core/scope/StepScopeIntegrationTests.java @@ -80,7 +80,6 @@ public class StepScopeIntegrationTests { String parent = (String) TestStep.getContext().getAttribute("parent"); assertNotNull(parent); assertEquals("bar", parent); - System.out.println(TestStep.getContext().getAttribute("parent.class")); assertTrue("Scoped proxy not created", ((String) TestStep.getContext().getAttribute("parent.class")) .matches(PROXY_TO_STRING_REGEX)); }