-
Notifications
You must be signed in to change notification settings - Fork 48
Fix integration tests #1973
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Fix integration tests #1973
Conversation
|
/integration-test |
| snapshot.dump(output); | ||
|
|
||
| - assertThat(output.toString()).isEqualTo(String.format("1%n2%n3%n4%n5%n")); | ||
| + assertThat(output).hasToString(String.format("1%n2%n3%n4%n5%n")); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This one is interesting 🤔, this doesn't do anything right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It does do something: it replaces %n with System.lineSeparator().
|
Looks good. No mutations were possible for these changes. |
|
Build failed. @rickie could it be that you ran |
|
Yeah I'm checking right now :) |
|
It seems I was using 21 🤔. |
|
/integration-test |
|
Looks good. No mutations were possible for these changes. |
|



No description provided.