From eebf616059a7a00ffd4f5c04ce252d72fbc09dc9 Mon Sep 17 00:00:00 2001 From: Thomas Bouffard <27200110+tbouffard@users.noreply.github.com> Date: Wed, 13 Mar 2024 15:17:57 +0100 Subject: [PATCH] fix: use right class name in "quick start" (#56) --- modules/ROOT/pages/quick-start.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ROOT/pages/quick-start.adoc b/modules/ROOT/pages/quick-start.adoc index 688eeee..3afc2a4 100644 --- a/modules/ROOT/pages/quick-start.adoc +++ b/modules/ROOT/pages/quick-start.adoc @@ -143,7 +143,7 @@ Create a new Maven project with the following pom.xml: <2> https://assertj.github.io/doc/#overview-what-is-assertj[Fluent assertion library] <3> https://github.com/awaitility/awaitility[Asynchronous systems test library] -In `src/test/java/com/company/test`, create a class `ProcessIT.java` with the following content: +In `src/test/java/com/company/test`, create a class `CreateDinosaurIT.java` with the following content: [source, java] ----