You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2023/01/13 19:55:48 UTC

[commons-beanutils] branch master updated: Fix spelling

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


The following commit(s) were added to refs/heads/master by this push:
     new 1b251e68 Fix spelling
1b251e68 is described below

commit 1b251e689d18e516bbd850894166bfde23b09918
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Jan 13 14:55:44 2023 -0500

    Fix spelling
---
 src/test/java/org/apache/commons/beanutils2/LazyDynaClassTestCase.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/beanutils2/LazyDynaClassTestCase.java b/src/test/java/org/apache/commons/beanutils2/LazyDynaClassTestCase.java
index fed0b1f6..3c546c3f 100644
--- a/src/test/java/org/apache/commons/beanutils2/LazyDynaClassTestCase.java
+++ b/src/test/java/org/apache/commons/beanutils2/LazyDynaClassTestCase.java
@@ -187,7 +187,7 @@ public class LazyDynaClassTestCase extends TestCase {
         final DynaProperty dynaProperty = dynaClass.getDynaProperty(testProperty);
         assertEquals("name is correct", testProperty, dynaProperty.getName());
         assertEquals("type is correct", Object.class, dynaProperty.getType());
-        assertFalse("property doesnt exist", dynaClass.isDynaProperty(testProperty));
+        assertFalse("property doesn't exist", dynaClass.isDynaProperty(testProperty));
     }
 
     /**