Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,8 @@ void shouldHandleNullsInNativeProjectParameters() {
null,
null,
null
)).withMessage("Multiple errors in configuration arguments:\n" +
"\t\t\t\tNo value specified for the mandatory configuration parameter `nodeProjection`\n" +
)).withMessage("Multiple errors in configuration arguments:" + System.lineSeparator() +
"\t\t\t\tNo value specified for the mandatory configuration parameter `nodeProjection`" + System.lineSeparator() +
"\t\t\t\tNo value specified for the mandatory configuration parameter `relationshipProjection`");

assertThatIllegalArgumentException().isThrownBy(() -> facade.nativeProject(
Expand Down Expand Up @@ -259,8 +259,8 @@ void shouldHandleNullsInCypherProjectParameters() {
null,
null,
null
)).withMessage("Multiple errors in configuration arguments:\n" +
"\t\t\t\tNo value specified for the mandatory configuration parameter `nodeQuery`\n" +
)).withMessage("Multiple errors in configuration arguments:" + System.lineSeparator() +
"\t\t\t\tNo value specified for the mandatory configuration parameter `nodeQuery`" + System.lineSeparator() +
"\t\t\t\tNo value specified for the mandatory configuration parameter `relationshipQuery`");

assertThatIllegalArgumentException().isThrownBy(() -> facade.cypherProject(
Expand Down