You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 30, 2019. It is now read-only.
I am trying to retryIf when an exceptions root cause is a particular exception but it always retrying even if there isn't a match. Here is a test case which isn't working for the negative case
I am trying to retryIf when an exceptions root cause is a particular exception but it always retrying even if there isn't a match. Here is a test case which isn't working for the negative case
import com.nurkiewicz.asyncretry.RetryContext;
import org.mockito.Mock;
import org.testng.annotations.Test;
import java.io.FileNotFoundException;
import java.net.SocketException;
import static org.assertj.core.api.Assertions.assertThat;
import static org.mockito.BDDMockito.given;
public class RetryIfPredicatesTest extends AbstractRetryPolicyTest {
}
The text was updated successfully, but these errors were encountered: