Fixed assertion that broke build

This commit is contained in:
dsyer
2009-03-07 14:28:22 +00:00
parent deb667ee23
commit 84ba0a6153

View File

@@ -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);
}