From a6856f28a852c67109a3aca7372a2fc7df71cbb5 Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Thu, 22 Feb 2024 09:55:05 -0500 Subject: [PATCH] Fix typo for `@SpringJUnitConfig` in the docs --- src/reference/antora/modules/ROOT/pages/testing.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/reference/antora/modules/ROOT/pages/testing.adoc b/src/reference/antora/modules/ROOT/pages/testing.adoc index 96e84abc..42571eb1 100644 --- a/src/reference/antora/modules/ROOT/pages/testing.adoc +++ b/src/reference/antora/modules/ROOT/pages/testing.adoc @@ -31,7 +31,7 @@ In addition, the beans associated with `@EnableRabbit` (to support `@RabbitListe .Junit5 example [source, java] ---- -@SpringJunitConfig +@SpringJUnitConfig @SpringRabbitTest public class MyRabbitTests { @@ -59,7 +59,7 @@ public class MyRabbitTests { } ---- -With JUnit4, replace `@SpringJunitConfig` with `@RunWith(SpringRunnner.class)`. +With JUnit4, replace `@SpringJUnitConfig` with `@RunWith(SpringRunnner.class)`. [[mockito-answer]] == Mockito `Answer` Implementations