Skip to content

Commit

Permalink
yegor256#968 corrected the conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmessias9898 committed Mar 28, 2019
1 parent 8372013 commit f7ae3c6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/test/java/org/takes/rs/RsWithoutHeaderTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
*/
package org.takes.rs;

import com.google.common.base.Joiner;
import java.io.IOException;
import org.cactoos.text.JoinedText;
import org.hamcrest.MatcherAssert;
import org.hamcrest.Matchers;
import org.junit.Test;
Expand All @@ -49,11 +49,12 @@ public void addsHeadersToResponse() throws IOException {
)
).print(),
Matchers.equalTo(
Joiner.on("\r\n").join(
new JoinedText(
"\r\n",
"HTTP/1.1 200 OK",
"",
""
)
).asString()
)
);
}
Expand Down

0 comments on commit f7ae3c6

Please sign in to comment.