garydgregory commented on code in PR #283:
URL: https://github.com/apache/commons-beanutils/pull/283#discussion_r1740204595


##########
src/test/java/org/apache/commons/beanutils2/WrapDynaBeanTestCase.java:
##########
@@ -266,10 +276,10 @@ public void testMappedRemove() {
         }
 
         try {
-            assertTrue("Can not see unknown key", 
!bean.contains("mappedProperty", "Unknown Key"));
+            assertFalse(bean.contains("mappedProperty", "Unknown Key"), "Can 
not see unknown key");
             bean.remove("mappedProperty", "Unknown Key");
             fail("Should have thrown UnsupportedOperationException");
-            // assertTrue("Can not see unknown key",
+            // Assert.assertTrue("Can not see unknown key",

Review Comment:
   Odd comment change ;-)



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to