Skip to content

Commit a8cafc7

Browse files
committed
[bugfix] Align line ending for the mock data and the test, and make sure it passes CI
1 parent c676f88 commit a8cafc7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/test/java/com/evolvedbinary/bblValidator/controller/SchemaControllerTest.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ void schemaList() throws JsonProcessingException {
8080

8181
@Test
8282
void getSchema() {
83-
final String expectedSchema = "version 1.1\r\n" +
84-
"@totalColumns 3\r\n" +
85-
"c1:\r\n" +
86-
"c2:\r\n" +
87-
"c3: is(concat($c1,$c2))\r\n";
83+
final String expectedSchema = "version 1.1\n" +
84+
"@totalColumns 3\n" +
85+
"c1:\n" +
86+
"c2:\n" +
87+
"c3: is(concat($c1,$c2))\n";
8888
final HttpRequest<Void> request = HttpRequest.GET("/concat");
8989
// deserialize the request to SchemaInfo
9090
final HttpResponse<String> response = client.toBlocking().exchange(request, String.class);

0 commit comments

Comments
 (0)