Skip to content

Commit

Permalink
Update src/test/java/org/kohsuke/github/GHPullRequestTest.java
Browse files Browse the repository at this point in the history
  • Loading branch information
bitwiseman authored Jul 1, 2024
1 parent 753f01b commit 3df01bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/org/kohsuke/github/GHPullRequestTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -321,8 +321,8 @@ public void pullRequestReviewComments() throws Exception {
try {
assertThat(p.listReviewComments().toList(), is(empty()));

// Call the deprecated method to ensure continued support
p.createReviewComment("Sample review comment", p.getHead().getSha(), "README.md", 1);
// Call the deprecated method to ensure continued support
p.createReviewComment("Sample review comment", p.getHead().getSha(), "README.md", 1);
p.createReviewComment()
.commitId(p.getHead().getSha())
.body("A single line review comment")
Expand Down

0 comments on commit 3df01bb

Please sign in to comment.