From bc14ae435590cb477eb4ff9d255c630dda626dac Mon Sep 17 00:00:00 2001 From: moonyoungCHAE Date: Thu, 13 Nov 2025 18:26:38 +0900 Subject: [PATCH] fix wrong test example Signed-off-by: moonyoungCHAE --- .../src/main/antora/modules/ROOT/pages/testing.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-kafka-docs/src/main/antora/modules/ROOT/pages/testing.adoc b/spring-kafka-docs/src/main/antora/modules/ROOT/pages/testing.adoc index b19eef3036..5f653cf25c 100644 --- a/spring-kafka-docs/src/main/antora/modules/ROOT/pages/testing.adoc +++ b/spring-kafka-docs/src/main/antora/modules/ROOT/pages/testing.adoc @@ -149,7 +149,7 @@ The following example configuration creates topics called `cat` and `hat` with f public class MyTests { @ClassRule - private static EmbeddedKafkaRule embeddedKafka = new EmbeddedKafkaRule(1, false, 5, "cat", "hat"); + public static EmbeddedKafkaRule embeddedKafka = new EmbeddedKafkaRule(1, false, 5, "cat", "hat"); @Test public void test() {