* @throws Exception If a problem occurs.
*/
@Test
public void executePatchRequest() throws Exception {
final String path = "/path/to/file.txt";
final PullComment comment = MkPullCommentTest.comment();
comment.patch(Json.createObjectBuilder().add("path", path).build());
MatcherAssert.assertThat(
comment.json().toString(),
Matchers.containsString(path)
);
}