Skip to content

Commit

Permalink
Get rid of more newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
FroMage committed Jun 11, 2020
1 parent 7a113f1 commit dccc198
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public void testFilter() {
RestAssured.given().accept(ContentType.HTML).get("/hello/native/typed-template?name=Joe").then()
.body(Matchers.is("<html>Salut Joe!</html>"));
when().get("/hello/native/typed-template-primitives").then()
.body(Matchers.is("Byte: 0\nShort: 1\nInt: 2\nLong: 3\nChar: a\nBoolean: true\nFloat: 4.0\nDouble: 5.0"));
.body(Matchers.is("Byte: 0 Short: 1 Int: 2 Long: 3 Char: a Boolean: true Float: 4.0 Double: 5.0"));
when().get("/hello/native/toplevel?name=Joe").then().body(Matchers.is("Salut Joe!"));
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1 @@
Byte: {b}
Short: {s}
Int: {i}
Long: {l}
Char: {c}
Boolean: {bool}
Float: {f}
Double: {d}
Byte: {b} Short: {s} Int: {i} Long: {l} Char: {c} Boolean: {bool} Float: {f} Double: {d}

0 comments on commit dccc198

Please sign in to comment.