From c2e776417f0b19a285561a4050a975f0fc9ccfdb Mon Sep 17 00:00:00 2001 From: lychee955 Date: Mon, 20 Jan 2025 15:58:14 +0800 Subject: [PATCH] Fix incorrect test directory path in README Corrected the test directory path from `src/main/test/java/gateway` to `src/test/java/gateway` in the README. This ensures consistency with standard Maven project structures. Signed-off-by: lychee955 --- README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.adoc b/README.adoc index 9299ae0..a25eb46 100644 --- a/README.adoc +++ b/README.adoc @@ -265,7 +265,7 @@ The following listing shows the complete contents of `Application.java`: include::complete/src/main/java/gateway/Application.java[tag=code] ---- -Now we can create a new class called `ApplicationTest` in `src/main/test/java/gateway`. +Now we can create a new class called `ApplicationTest` in `src/test/java/gateway`. In the new class, we add the following content: [source,java,tabsize=2]