sanpwc commented on a change in pull request #8351:
URL: https://github.com/apache/ignite/pull/8351#discussion_r504908725
##########
File path:
modules/control-utility/src/test/java/org/apache/ignite/util/GridCommandHandlerTest.java
##########
@@ -682,6 +707,30 @@ private String findCrdInfo() {
return crdStr.substring(0, crdStr.indexOf('\n')).trim();
}
+ /**
+ * @return utility information about baseline nodes
+ */
+ private List<String> findBaselineNodesInfo() {
+ String outStr = testOut.toString();
+
+ int i = outStr.indexOf("Baseline nodes:");
+
+ assertTrue(i != -1);
Review comment:
Up to you, but I'd rather add some assert-related-message here.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]