From 634c257d93729e1a645eded974a190d13cf6b74b Mon Sep 17 00:00:00 2001 From: Sanne Grinovero <sanne@hibernate.org> Date: Tue, 26 Oct 2021 10:06:11 +0100 Subject: [PATCH] HHH-14899 Rename test class to fix typo: StateObjectStateExceptionHandlingTest to StaleObjectStateExceptionHandlingTest --- ...ngTest.java => StaleObjectStateExceptionHandlingTest.java} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename hibernate-core/src/test/java/org/hibernate/test/exceptionhandling/{StateObjectStateExceptionHandlingTest.java => StaleObjectStateExceptionHandlingTest.java} (95%) diff --git a/hibernate-core/src/test/java/org/hibernate/test/exceptionhandling/StateObjectStateExceptionHandlingTest.java b/hibernate-core/src/test/java/org/hibernate/test/exceptionhandling/StaleObjectStateExceptionHandlingTest.java similarity index 95% rename from hibernate-core/src/test/java/org/hibernate/test/exceptionhandling/StateObjectStateExceptionHandlingTest.java rename to hibernate-core/src/test/java/org/hibernate/test/exceptionhandling/StaleObjectStateExceptionHandlingTest.java index c0c50be6ef..e7b38a0b74 100644 --- a/hibernate-core/src/test/java/org/hibernate/test/exceptionhandling/StateObjectStateExceptionHandlingTest.java +++ b/hibernate-core/src/test/java/org/hibernate/test/exceptionhandling/StaleObjectStateExceptionHandlingTest.java @@ -21,9 +21,9 @@ import org.junit.Test; @TestForIssue(jiraKey = "HHH-12666") @RequiresDialect(H2Dialect.class) -public class StateObjectStateExceptionHandlingTest extends BaseExceptionHandlingTest { +public class StaleObjectStateExceptionHandlingTest extends BaseExceptionHandlingTest { - public StateObjectStateExceptionHandlingTest( + public StaleObjectStateExceptionHandlingTest( BootstrapMethod bootstrapMethod, ExceptionHandlingSetting exceptionHandlingSetting, ExceptionExpectations exceptionExpectations) {