rpuch commented on a change in pull request #647:
URL: https://github.com/apache/ignite-3/pull/647#discussion_r802756703
##########
File path:
modules/cli/src/test/java/org/apache/ignite/cli/IgniteCliInterfaceTest.java
##########
@@ -603,10 +824,10 @@ void setJson() throws IOException, InterruptedException {
* @param actual Actual result.
* @see Object#equals(Object)
*/
- private static void assertEquals(String exp, String actual) {
- Assertions.assertEquals(
- exp.lines().collect(Collectors.toList()),
- actual.lines().collect(Collectors.toList())
+ private static void assertOutputEqual(String exp, String actual) {
+ assertEquals(
+ exp.lines().collect(toList()),
Review comment:
It worked like this before me, so I just did not want to change the
logic without a good reason. Maybe the guys wanted to remove newlines.
--
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]