Skip to content

Commit

Permalink
fix name
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Sep 20, 2024
1 parent 710c447 commit b146080
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ public void testRethrowThrowsRuntimeException() {

final ResultSetIterator resultSetIterator = new ResultSetIterator((ResultSet) null);
final Throwable throwable = new Throwable();
final SQLException sQLException = new SQLException(throwable);
final SQLException sqlException = new SQLException(throwable);

try {
resultSetIterator.rethrow(sQLException);
resultSetIterator.rethrow(sqlException);
fail("Expecting exception: RuntimeException");
} catch (final RuntimeException e) {
assertEquals(ResultSetIterator.class.getName(), e.getStackTrace()[0].getClassName());
Expand Down

0 comments on commit b146080

Please sign in to comment.