Skip to content

Commit

Permalink
yegor256#58: tests updated
Browse files Browse the repository at this point in the history
  • Loading branch information
popprem committed Apr 29, 2015
1 parent 4e3f6b1 commit d4fb402
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/test/java/org/takes/facets/fork/TkForkTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public void dispatchesByRegularExpression() throws IOException {
Matchers.equalTo(
Joiner.on("\r\n").join(
"HTTP/1.1 200 OK",
String.format("Content-Length:%s", body.length()),
String.format("Content-Length: %s", body.length()),
"Content-Type: text/plain",
"",
body
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/takes/rs/RsTextTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public void makesPlainTextResponse() throws IOException {
Matchers.equalTo(
Joiner.on("\r\n").join(
"HTTP/1.1 200 OK",
String.format("Content-Length:%s", body.length()),
String.format("Content-Length: %s", body.length()),
"Content-Type: text/plain",
"",
body
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/takes/tk/TkHTMLTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public void createsTextResponse() throws IOException {
Matchers.equalTo(
Joiner.on("\r\n").join(
"HTTP/1.1 200 OK",
String.format("Content-Length:%s", body.length()),
String.format("Content-Length: %s", body.length()),
"Content-Type: text/html",
"",
body
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/takes/tk/TkTextTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public void createsTextResponse() throws IOException {
Matchers.equalTo(
Joiner.on("\r\n").join(
"HTTP/1.1 200 OK",
String.format("Content-Length:%s", body.length()),
String.format("Content-Length: %s", body.length()),
"Content-Type: text/plain",
"",
body
Expand Down

0 comments on commit d4fb402

Please sign in to comment.