This is an automated email from the ASF dual-hosted git repository.
garydgregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-dbcp.git
The following commit(s) were added to refs/heads/master by this push:
new 2b066132 Normalize spelling.
2b066132 is described below
commit 2b0661320f9badf0cc12a1856c37aedfb6c19094
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Jun 27 19:06:05 2026 +0000
Normalize spelling.
---
src/test/java/org/apache/commons/dbcp2/TestUtils.java | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/test/java/org/apache/commons/dbcp2/TestUtils.java
b/src/test/java/org/apache/commons/dbcp2/TestUtils.java
index 2caea09e..6691e5c9 100644
--- a/src/test/java/org/apache/commons/dbcp2/TestUtils.java
+++ b/src/test/java/org/apache/commons/dbcp2/TestUtils.java
@@ -92,11 +92,11 @@ public class TestUtils {
@Test
void testIsDisconnectionSqlCode() {
- assertTrue(Utils.isDisconnectionSqlCode("57P01"), "57P01 should be
recognised as a disconnection SQL code.");
- assertTrue(Utils.isDisconnectionSqlCode("01002"), "01002 should be
recognised as a disconnection SQL code.");
- assertTrue(Utils.isDisconnectionSqlCode("JZ0C0"), "JZ0C0 should be
recognised as a disconnection SQL code.");
+ assertTrue(Utils.isDisconnectionSqlCode("57P01"), "57P01 should be
recognized as a disconnection SQL code.");
+ assertTrue(Utils.isDisconnectionSqlCode("01002"), "01002 should be
recognized as a disconnection SQL code.");
+ assertTrue(Utils.isDisconnectionSqlCode("JZ0C0"), "JZ0C0 should be
recognized as a disconnection SQL code.");
- assertFalse(Utils.isDisconnectionSqlCode("INVALID"), "INVALID should
not be recognised as a disconnection SQL code.");
- assertFalse(Utils.isDisconnectionSqlCode("00000"), "00000 should not
be recognised as a disconnection SQL code.");
+ assertFalse(Utils.isDisconnectionSqlCode("INVALID"), "INVALID should
not be recognized as a disconnection SQL code.");
+ assertFalse(Utils.isDisconnectionSqlCode("00000"), "00000 should not
be recognized as a disconnection SQL code.");
}
}