Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bowbahdoe committed Feb 24, 2024
1 parent 59e2c5e commit 47bd191
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/dev/mccue/jdbc/test/JdbcTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ INSERT INTO widget (name)
try (var stmt = StatementPreparer.of(conn)."""
SELECT * FROM widget
WHERE name IN \{names}
ORDER BY name DESC
ORDER BY name ASC
""") {
var rs = stmt.executeQuery();
assertTrue(rs.next(), "Get first row");
Expand All @@ -98,7 +98,7 @@ INSERT INTO widget (name)
try (var stmt = StatementPreparer.of(conn)."""
SELECT * FROM widget
WHERE name IN \{names} AND id = \{id}
ORDER BY name DESC
ORDER BY name ASC
""") {
var rs = stmt.executeQuery();
assertTrue(rs.next(), "Get first row");
Expand Down

0 comments on commit 47bd191

Please sign in to comment.