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

View File

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