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 f81064e Spelling f81064e is described below commit f81064e7e98da4fd3db280b02888af27656dfe72 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Oct 22 16:30:20 2022 -0400 Spelling --- src/test/java/org/apache/commons/dbutils/DbUtilsTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/dbutils/DbUtilsTest.java b/src/test/java/org/apache/commons/dbutils/DbUtilsTest.java index 7ad83b1..a63cd0d 100644 --- a/src/test/java/org/apache/commons/dbutils/DbUtilsTest.java +++ b/src/test/java/org/apache/commons/dbutils/DbUtilsTest.java @@ -247,7 +247,7 @@ public class DbUtilsTest { DbUtils.rollbackAndClose(mockConnection); fail("DbUtils.rollbackAndClose() swallowed SQLException!"); } catch (final SQLException e) { - // we expect this exeption + // we expect this exception } verify(mockConnection).rollback(); verify(mockConnection).close();