From 84ba0a6153ee53934836264182398c1d36cae9cf Mon Sep 17 00:00:00 2001 From: dsyer Date: Sat, 7 Mar 2009 14:28:22 +0000 Subject: [PATCH] Fixed assertion that broke build --- .../scope/StepScopeDestructionCallbackIntegrationTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-batch-core/src/test/java/org/springframework/batch/core/scope/StepScopeDestructionCallbackIntegrationTests.java b/spring-batch-core/src/test/java/org/springframework/batch/core/scope/StepScopeDestructionCallbackIntegrationTests.java index 445222f11..00a86b51b 100644 --- a/spring-batch-core/src/test/java/org/springframework/batch/core/scope/StepScopeDestructionCallbackIntegrationTests.java +++ b/spring-batch-core/src/test/java/org/springframework/batch/core/scope/StepScopeDestructionCallbackIntegrationTests.java @@ -56,7 +56,7 @@ public class StepScopeDestructionCallbackIntegrationTests { public void testProxiedScopedProxy() throws Exception { assertNotNull(nested); nested.execute(new StepExecution("step", new JobExecution(0L), 1L)); - assertEquals(2, TestAdvice.names.size()); + assertEquals(4, TestAdvice.names.size()); assertEquals("bar", TestAdvice.names.get(0)); assertEquals("destroyed", TestDisposableCollaborator.message); }