From 09abcea2223e6cac55e465a7d4766b6e18293607 Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Thu, 13 Oct 2022 12:16:02 -0400 Subject: [PATCH] Fix composite retriable ann test for expectation --- .../annotation/RecoverAnnotationRecoveryHandlerTests.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/java/org/springframework/retry/annotation/RecoverAnnotationRecoveryHandlerTests.java b/src/test/java/org/springframework/retry/annotation/RecoverAnnotationRecoveryHandlerTests.java index 852d8eb2..ba3f52f0 100644 --- a/src/test/java/org/springframework/retry/annotation/RecoverAnnotationRecoveryHandlerTests.java +++ b/src/test/java/org/springframework/retry/annotation/RecoverAnnotationRecoveryHandlerTests.java @@ -46,7 +46,7 @@ * @author Randell Callahan * @author Nathanaƫl Roberts * @author Maksim Kita - * @Author Gianluca Medici + * @author Gianluca Medici */ public class RecoverAnnotationRecoveryHandlerTests { @@ -666,7 +666,7 @@ public int fooRecover(Throwable throwable, String name) { } public int barRecover(Throwable throwable, String name) { - return 2; + return 4; } }