Skip to content

Commit

Permalink
Switched error string to TestResource error string
Browse files Browse the repository at this point in the history
  • Loading branch information
tkyc committed Feb 9, 2024
1 parent 5067efc commit 507107b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1086,7 +1086,7 @@ public void testExecSystemStoredProcedureNamedParametersAndIndexedParameterResul

try (ResultSet rs = cstmt.executeQuery()) {
while (rs.next()) {
assertTrue("Failed -- ResultSet was not returned.", !rs.getString(4).isEmpty());
assertTrue(TestResource.getResource("R_resultSetEmpty"), !rs.getString(4).isEmpty());
}
}
}
Expand All @@ -1100,7 +1100,7 @@ public void testExecSystemStoredProcedureNoIndexedParametersResultSet() throws S

try (ResultSet rs = cstmt.executeQuery()) {
while (rs.next()) {
assertTrue("Failed -- ResultSet was not returned.", !rs.getString(4).isEmpty());
assertTrue(TestResource.getResource("R_resultSetEmpty"), !rs.getString(4).isEmpty());
}
}
}
Expand Down

0 comments on commit 507107b

Please sign in to comment.