Mmuzaf commented on PR #4263:
URL: https://github.com/apache/cassandra/pull/4263#issuecomment-3097910433

   The same asserting on wrong output:
   
   ```
           ToolResult getThresholdsResult = 
invokeNodetool("getguardrailsconfig", "-c", "thresholds");
           getValuesResult.asserts().success();
           assertEquals(removeMultipleSpaces(ALL_THRESHOLDS_GETTER_OUTPUT), 
getOutput(getThresholdsResult));
   ```
   
   should be:
   
   ```
           ToolResult getThresholdsResult = 
invokeNodetool("getguardrailsconfig", "-c", "thresholds");
           getThresholdsResult.asserts().success();
           assertEquals(removeMultipleSpaces(ALL_THRESHOLDS_GETTER_OUTPUT), 
getOutput(getThresholdsResult));
   ```


-- 
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: pr-unsubscr...@cassandra.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: pr-unsubscr...@cassandra.apache.org
For additional commands, e-mail: pr-h...@cassandra.apache.org

Reply via email to