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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]