diff --git a/hibernate-core/src/test/java/org/hibernate/orm/test/jpa/remove/RemoveAndOrderUpdateTest.java b/hibernate-core/src/test/java/org/hibernate/orm/test/jpa/remove/RemoveAndOrderUpdateTest.java index e70d674959..19b5174a27 100644 --- a/hibernate-core/src/test/java/org/hibernate/orm/test/jpa/remove/RemoveAndOrderUpdateTest.java +++ b/hibernate-core/src/test/java/org/hibernate/orm/test/jpa/remove/RemoveAndOrderUpdateTest.java @@ -72,8 +72,9 @@ public void testRemove(EntityManagerFactoryScope scope) { @Entity(name = "Form") public static class Form { @Id - @GeneratedValue(strategy = GenerationType.IDENTITY) + @GeneratedValue protected Long id; + protected String name; public Long getId() { return id; @@ -88,7 +89,7 @@ public void setId(Long id) { @Entity(name = "FormInput") public static class FormInput { @Id - @GeneratedValue(strategy = GenerationType.IDENTITY) + @GeneratedValue private Long id; @ManyToOne(optional = false, fetch = FetchType.EAGER)