garydgregory commented on a change in pull request #792:
URL: https://github.com/apache/commons-lang/pull/792#discussion_r697705872
##########
File path: src/test/java/org/apache/commons/lang3/BooleanUtilsTest.java
##########
@@ -651,11 +611,9 @@ public void testOr_object_validInput_2items() {
.booleanValue(),
"False result for (true, true)");
- assertTrue(
- ! BooleanUtils
- .or(new Boolean[] { Boolean.FALSE, Boolean.FALSE })
- .booleanValue(),
- "True result for (false, false)");
+ assertFalse(BooleanUtils
+ .or(new Boolean[]{Boolean.FALSE, Boolean.FALSE})
Review comment:
Spaces got lost.
--
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]