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


The following commit(s) were added to refs/heads/master by this push:
     new 3638aba  Normalize to US English spelling.
3638aba is described below

commit 3638abaf6cdb3ba83787e2b6f630e81f014c77d5
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Mon Feb 8 14:02:22 2021 -0500

    Normalize to US English spelling.
---
 src/test/java/org/apache/commons/codec/binary/BaseNCodecTest.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/test/java/org/apache/commons/codec/binary/BaseNCodecTest.java 
b/src/test/java/org/apache/commons/codec/binary/BaseNCodecTest.java
index 2a02762..3b89c4d 100644
--- a/src/test/java/org/apache/commons/codec/binary/BaseNCodecTest.java
+++ b/src/test/java/org/apache/commons/codec/binary/BaseNCodecTest.java
@@ -231,8 +231,8 @@ public class BaseNCodecTest {
         context.pos = 76979;
         context.readPos = 273;
         ncodec.ensureBufferSize(0, context);
-        Assert.assertNotNull("buffer should be initialised", context.buffer);
-        Assert.assertEquals("buffer should be initialised to default size", 
ncodec.getDefaultBufferSize(), context.buffer.length);
+        Assert.assertNotNull("buffer should be initialized", context.buffer);
+        Assert.assertEquals("buffer should be initialized to default size", 
ncodec.getDefaultBufferSize(), context.buffer.length);
         Assert.assertEquals("context position", 0, context.pos);
         Assert.assertEquals("context read position", 0, context.readPos);
 

Reply via email to