Fix test failing on H2 because the table name is a reserved keyword

This commit is contained in:
Vlad Mihalcea 2016-03-22 16:17:18 +02:00
parent 9608b3904a
commit 573518cfc9
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ public class MergeListPreAndPostPersistTest extends BaseCoreFunctionalTestCase {
s.close();
}
@Entity(name = "Order")
@Entity(name = "`Order`")
private static class Order {
@Id
public Long id;