From 72f2cf1a917dcc3c0ab72aa53047bb6d7f31e89d Mon Sep 17 00:00:00 2001 From: lucasward Date: Mon, 14 Jan 2008 23:11:17 +0000 Subject: [PATCH] Unit test fixes. --- .../execution/step/simple/SimpleStepExecutorFactoryTests.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-batch-execution/src/test/java/org/springframework/batch/execution/step/simple/SimpleStepExecutorFactoryTests.java b/spring-batch-execution/src/test/java/org/springframework/batch/execution/step/simple/SimpleStepExecutorFactoryTests.java index dbaf51a6f..3d62b7b75 100644 --- a/spring-batch-execution/src/test/java/org/springframework/batch/execution/step/simple/SimpleStepExecutorFactoryTests.java +++ b/spring-batch-execution/src/test/java/org/springframework/batch/execution/step/simple/SimpleStepExecutorFactoryTests.java @@ -144,9 +144,9 @@ public class SimpleStepExecutorFactoryTests extends TestCase { } catch (IllegalStateException e) { // expected assertTrue( - "Error message does not contain SimpleStepConfiguration: " + "Error message does not contain SimpleStep: " + e.getMessage(), e.getMessage().indexOf( - "SimpleStepConfiguration") >= 0); + "SimpleStep") >= 0); } }