Skip to content

Commit c0b2c46

Browse files
committed
[DXP-1821] Fix Windows newlines
1 parent 44fe6f0 commit c0b2c46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/test/java/dev/streamx/cli/command/ingestion/BaseIngestionCommandTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ protected static void expectSuccess(LaunchResult result) {
4848

4949
protected static void expectError(LaunchResult result, String expectedErrorOutput) {
5050
assertThat(result.exitCode()).isNotZero();
51-
assertThat(result.getErrorOutput()).contains(expectedErrorOutput);
51+
assertThat(result.getErrorOutput().replace("\r\n", "\n")).contains(expectedErrorOutput);
5252
}
5353

5454
protected static void setupMockChannelsSchemasResponse() {

0 commit comments

Comments
 (0)