diff --git a/src/main/java/org/kiwiproject/test/jakarta/persistence/JpaTestHelper.java b/src/main/java/org/kiwiproject/test/jakarta/persistence/JpaTestHelper.java index 3c672f7..9e355ea 100644 --- a/src/main/java/org/kiwiproject/test/jakarta/persistence/JpaTestHelper.java +++ b/src/main/java/org/kiwiproject/test/jakarta/persistence/JpaTestHelper.java @@ -9,7 +9,7 @@ import jakarta.persistence.EntityManager; /** - * Test utility for testing JPA-based code. This mainly makes sense when your tests are using a framework + * Test utility for testing JPA-based code. This is mainly useful when your tests are using a framework * that sets up a transaction before each test, executes the test inside that transaction, and then rolls * back the transaction after the test. The methods here are useful to flush and clear the {@link EntityManager} * during test execution, otherwise JPA (e.g., Hibernate) won't always automatically flush. In addition,