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-validator.git


The following commit(s) were added to refs/heads/master by this push:
     new 1705c4e6 Normalize spelling
1705c4e6 is described below

commit 1705c4e60110f54b27100bd07f19c7f6b3f7689e
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Jul 4 19:24:38 2026 -0400

    Normalize spelling
---
 .../org/apache/commons/validator/routines/BigDecimalValidatorTest.java  | 2 +-
 .../org/apache/commons/validator/routines/BigIntegerValidatorTest.java  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/src/test/java/org/apache/commons/validator/routines/BigDecimalValidatorTest.java
 
b/src/test/java/org/apache/commons/validator/routines/BigDecimalValidatorTest.java
index 5ee9336d..84219622 100644
--- 
a/src/test/java/org/apache/commons/validator/routines/BigDecimalValidatorTest.java
+++ 
b/src/test/java/org/apache/commons/validator/routines/BigDecimalValidatorTest.java
@@ -71,7 +71,7 @@ class BigDecimalValidatorTest extends 
AbstractNumberValidatorTest {
      * <p>
      * Because the implementation converts the BigDecimal to a {@code double} 
via {@link BigDecimal#doubleValue()}, values beyond {@code ±Double.MAX_VALUE}
      * overflow to {@code ±Double.POSITIVE_INFINITY} / {@code 
Double.NEGATIVE_INFINITY}, and tiny positive values below {@code 
Double.MIN_VALUE} underflow to
-     * {@code 0.0}. The tests document this behaviour.
+     * {@code 0.0}. The tests document this behavior.
      * </p>
      */
     @Test
diff --git 
a/src/test/java/org/apache/commons/validator/routines/BigIntegerValidatorTest.java
 
b/src/test/java/org/apache/commons/validator/routines/BigIntegerValidatorTest.java
index 8e196ac8..9b9a9a71 100644
--- 
a/src/test/java/org/apache/commons/validator/routines/BigIntegerValidatorTest.java
+++ 
b/src/test/java/org/apache/commons/validator/routines/BigIntegerValidatorTest.java
@@ -223,7 +223,7 @@ class BigIntegerValidatorTest extends 
AbstractNumberValidatorTest {
     /**
      * A non-finite {@link Double} bound must not be routed through {@link 
BigDecimal}, which cannot represent {@code NaN} or an infinity. The {@link 
Number}
      * overloads previously converted every bound to a {@code BigDecimal} and 
so threw {@code NumberFormatException} for such a bound, whereas the sibling
-     * {@link BigDecimalValidator} already handled it. The behaviour now 
matches: a {@code NaN} bound is never satisfied, and an infinity is an open 
bound.
+     * {@link BigDecimalValidator} already handled it. The behavior now 
matches: a {@code NaN} bound is never satisfied, and an infinity is an open 
bound.
      */
     @Test
     void testNumberRangeNonFiniteBound() {

Reply via email to