Review process: Break cycle introduced when RetrySynchManager was moved into support package.

This commit is contained in:
dsyer
2008-03-14 11:33:18 +00:00
parent 07877a9538
commit 2424c0ec39
17 changed files with 90 additions and 114 deletions

View File

@@ -104,7 +104,7 @@ public class SimpleRetryExceptionHandlerTests extends TestCase {
SimpleRetryExceptionHandler handler = new SimpleRetryExceptionHandler(retryPolicy, new SimpleLimitExceptionHandler(0));
// Simulate a failed retry...
RetryContext retryContext = retryPolicy.open(null);
RetryContext retryContext = retryPolicy.open(null, null);
retryPolicy.registerThrowable(retryContext, ex);
handler.close(retryContext, null, ex);
return handler;