This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-dbutils.git


The following commit(s) were added to refs/heads/master by this push:
     new b146080  fix name
b146080 is described below

commit b1460801efee2da7b765c6939961470c6e1cbd90
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Fri Sep 20 17:08:53 2024 -0400

    fix name
---
 src/test/java/org/apache/commons/dbutils/ResultSetIteratorTest.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/src/test/java/org/apache/commons/dbutils/ResultSetIteratorTest.java 
b/src/test/java/org/apache/commons/dbutils/ResultSetIteratorTest.java
index ba74f2d..425017e 100644
--- a/src/test/java/org/apache/commons/dbutils/ResultSetIteratorTest.java
+++ b/src/test/java/org/apache/commons/dbutils/ResultSetIteratorTest.java
@@ -66,10 +66,10 @@ public class ResultSetIteratorTest extends BaseTestCase {
 
         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());

Reply via email to