Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DavideD committed Jul 25, 2024
1 parent a1ac0ea commit 1032f96
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import io.vertx.junit5.VertxTestContext;
import jakarta.persistence.Entity;
import jakarta.persistence.Id;
import jakarta.persistence.Table;
import jakarta.persistence.metamodel.SingularAttribute;

import static java.util.concurrent.TimeUnit.MINUTES;
Expand Down Expand Up @@ -302,6 +303,7 @@ private void assertOrderByBookArray(List<Object[]> resultList, Book... expectedB
}

@Entity(name = "Book")
@Table(name = "OrderTest_Book" )
static class Book {
@Id
String isbn;
Expand Down

0 comments on commit 1032f96

Please sign in to comment.