Mmuzaf commented on PR #4263:
URL: https://github.com/apache/cassandra/pull/4263#issuecomment-3097885627
In this test, we assert the wrong output. It is probably a copy-paste:
```
// individual guardrail
ToolResult individualResult = invokeNodetool("getguardrailsconfig",
"group_by_enabled");
getResult.asserts().success();
assertEquals("true\n", getOutput(individualResult));
```
should be assertin on `individualResult`:
```
// individual guardrail
ToolResult individualResult = invokeNodetool("getguardrailsconfig",
"group_by_enabled");
individualResult.asserts().success();
assertEquals("true\n", getOutput(individualResult));
```
--
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]