From 5199a65e2017f7e9fb4357e7ae898cc3a1473853 Mon Sep 17 00:00:00 2001 From: Jay Bryant Date: Tue, 16 Jul 2024 08:22:11 -0500 Subject: [PATCH] Fix an include to match a recently renamed file. --- README.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.adoc b/README.adoc index f20fa6fc..a16b9f3d 100644 --- a/README.adoc +++ b/README.adoc @@ -229,12 +229,12 @@ narrow it down if you want to build something different. As well as mocking the HTTP request cycle, you can also use Spring Boot to write a simple full-stack integration test. For example, instead of (or as well as) the mock test shown earlier, we could create the following test (from -`src/test/java/com/example/springboot/HelloControllerIT.java`): +`src/test/java/com/example/springboot/HelloControllerITest.java`): ==== [source,java] ---- -include::complete/src/test/java/com/example/springboot/HelloControllerIT.java[] +include::complete/src/test/java/com/example/springboot/HelloControllerITest.java[] ---- ====