From a39bc864f7f78fc6130d1c77d7f15b33b4b73539 Mon Sep 17 00:00:00 2001 From: Simon Biwer Date: Wed, 20 May 2026 13:29:58 +0200 Subject: [PATCH] update README examples to current source code structure --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 69f46d3..7393e34 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Let’s consider the following test: ```java -import de.cronn.validationfile.junit5.JUnit5ValidationFileAssertions; +import de.cronn.assertions.validationfile.junit5.JUnit5ValidationFileAssertions; class MyTest implements JUnit5ValidationFileAssertions { @Test @@ -89,7 +89,7 @@ import org.assertj.core.api.SoftAssertions; import org.assertj.core.api.junit.jupiter.InjectSoftAssertions; import org.assertj.core.api.junit.jupiter.SoftAssertionsExtension; -import de.cronn.validationfile.junit5.JUnit5ValidationFileAssertions; +import de.cronn.assertions.validationfile.junit5.JUnit5ValidationFileAssertions; @ExtendWith(SoftAssertionsExtension.class) class MyTest implements JUnit5ValidationFileAssertions {