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-collections.git
The following commit(s) were added to refs/heads/master by this push: new ce4d2c8b1 Normalize spelling to US English ce4d2c8b1 is described below commit ce4d2c8b17923ee2643df36e2fc103109c5e53e1 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Oct 31 06:18:19 2023 -0400 Normalize spelling to US English --- .../collections4/iterators/ObjectGraphIteratorTest.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/test/java/org/apache/commons/collections4/iterators/ObjectGraphIteratorTest.java b/src/test/java/org/apache/commons/collections4/iterators/ObjectGraphIteratorTest.java index 7befde8a5..899a6725b 100644 --- a/src/test/java/org/apache/commons/collections4/iterators/ObjectGraphIteratorTest.java +++ b/src/test/java/org/apache/commons/collections4/iterators/ObjectGraphIteratorTest.java @@ -400,14 +400,14 @@ public class ObjectGraphIteratorTest extends AbstractIteratorTest<Object> { static class Leaf { - String colour; + String color; - String getColour() { - return colour; + String getColor() { + return color; } - void setColour(final String colour) { - this.colour = colour; + void setColor(final String colour) { + this.color = colour; } }