IN PROGRESS - issue BATCH-572: Retryable exceptions cannot be skippable

Fix exception message (minor)
This commit is contained in:
dsyer
2008-05-22 17:01:00 +00:00
parent 42d672d401
commit 277246cfb6
2 changed files with 2 additions and 2 deletions

View File

@@ -66,7 +66,7 @@ public class RecoveryRetryPolicyTests extends TestCase {
fail("Expected IllegalStateException");
}
catch (IllegalStateException e) {
assertTrue(e.getMessage().indexOf("must be ItemProvider") >= 0);
assertTrue(e.getMessage().indexOf("must be RecoveryRetryCallback") >= 0);
}
}