This is an automated email from the ASF dual-hosted git repository.

orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git

commit f55b836cd17bf562c80a8443b04a3a59d6b5b2b6
Author: Otavio Rodolfo Piske <angusyo...@gmail.com>
AuthorDate: Sat Jun 15 07:47:14 2024 +0200

    CAMEL-20838: use appropriate methods for setting up/cleaning up resources 
(camel-aws-xray)
---
 .../apache/camel/component/aws/xray/SpringAwsXRaySimpleRouteTest.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/components/camel-aws/camel-aws-xray/src/test/java/org/apache/camel/component/aws/xray/SpringAwsXRaySimpleRouteTest.java
 
b/components/camel-aws/camel-aws-xray/src/test/java/org/apache/camel/component/aws/xray/SpringAwsXRaySimpleRouteTest.java
index 2dbd7855cfa..e1be764de75 100644
--- 
a/components/camel-aws/camel-aws-xray/src/test/java/org/apache/camel/component/aws/xray/SpringAwsXRaySimpleRouteTest.java
+++ 
b/components/camel-aws/camel-aws-xray/src/test/java/org/apache/camel/component/aws/xray/SpringAwsXRaySimpleRouteTest.java
@@ -43,12 +43,12 @@ public class SpringAwsXRaySimpleRouteTest extends 
CamelSpringTestSupport {
     }
 
     @Override
-    public void doPreSetup() {
+    public void setupResources() {
         socketListener.before();
     }
 
     @Override
-    public void doPostTearDown() {
+    public void cleanupResources() {
         socketListener.after();
     }
 

Reply via email to