From 6984e3663d138aa421b8c1d6107d66aceb05974f Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Fri, 10 Dec 2021 09:02:24 +0100 Subject: [PATCH] Adopt to removed Spring Framework API. --- .../data/redis/PropertyEditorsIntegrationTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/springframework/data/redis/PropertyEditorsIntegrationTests.java b/src/test/java/org/springframework/data/redis/PropertyEditorsIntegrationTests.java index fa00ba9d0..394bfb5b5 100644 --- a/src/test/java/org/springframework/data/redis/PropertyEditorsIntegrationTests.java +++ b/src/test/java/org/springframework/data/redis/PropertyEditorsIntegrationTests.java @@ -39,7 +39,7 @@ class PropertyEditorsIntegrationTests { @AfterEach void tearDown() { if (ctx != null) - ctx.destroy(); + ctx.close(); } @Test