valepakh commented on code in PR #5985: URL: https://github.com/apache/ignite-3/pull/5985#discussion_r2135304351
########## modules/cli/src/integrationTest/java/org/apache/ignite/internal/cli/commands/configuration/ItConfigCommandTest.java: ########## @@ -157,8 +158,11 @@ void addConfigFromFileAndMergeFromArgs() { void addConfigFromNonExistingFile() { execute("cluster", "config", "update", "--url", NODE_URL, "--file", "wrongPath"); + if (getCommandClass().equals(TopLevelCliCommand.class)) { + assertAll(() -> assertExitCodeIs(1)); + } + assertAll( - () -> assertExitCodeIs(1), Review Comment: Let's use `assertExitCodeIsError` here and override `errorExitCode` in the REPL test instead. -- 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org