(self)
| 230 | self.assertEqual(comment.id, 886298) |
| 231 | |
| 232 | def testCreateReviewCommentInReplyTo(self): |
| 233 | commit = self.repo.get_commit("8a4f306d4b223682dd19410d4a9150636ebe4206") |
| 234 | comment = self.pull.create_review_comment( |
| 235 | "Comment created by PyGithub", |
| 236 | commit, |
| 237 | "src/github/Issue.py", |
| 238 | 5, |
| 239 | in_reply_to=42, |
| 240 | ) |
| 241 | self.assertEqual(comment.id, 886298) |
| 242 | |
| 243 | def testCreateReviewCommentSubjectType(self): |
| 244 | commit = self.repo.get_commit("8a4f306d4b223682dd19410d4a9150636ebe4206") |
nothing calls this directly
no test coverage detected