kevinrr888 commented on code in PR #5868:
URL: https://github.com/apache/accumulo/pull/5868#discussion_r2325413899
##########
core/src/test/java/org/apache/accumulo/core/conf/PropertyTest.java:
##########
@@ -71,8 +71,8 @@ public void testProperties() {
"Description not set for " + prop);
// make sure property description ends with a period
- assertTrue(prop.getDescription().endsWith("."),
- "Property: " + prop.getKey() + " description does not end with
period.");
+ assertTrue(prop.getDescription().trim().endsWith("."), "Property: " +
prop.getKey()
+ + " description does not end with period. Description = " +
prop.getDescription());
Review Comment:
Does this fail with the multi-line strings if we don't trim?
--
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]