We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c676f88 commit a8cafc7Copy full SHA for a8cafc7
src/test/java/com/evolvedbinary/bblValidator/controller/SchemaControllerTest.java
@@ -80,11 +80,11 @@ void schemaList() throws JsonProcessingException {
80
81
@Test
82
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";
+ final String expectedSchema = "version 1.1\n" +
+ "@totalColumns 3\n" +
+ "c1:\n" +
+ "c2:\n" +
+ "c3: is(concat($c1,$c2))\n";
88
final HttpRequest<Void> request = HttpRequest.GET("/concat");
89
// deserialize the request to SchemaInfo
90
final HttpResponse<String> response = client.toBlocking().exchange(request, String.class);
0 commit comments