(self)
| 241 | self.assertEqual(comment.id, 886298) |
| 242 | |
| 243 | def testCreateReviewCommentSubjectType(self): |
| 244 | commit = self.repo.get_commit("8a4f306d4b223682dd19410d4a9150636ebe4206") |
| 245 | comment = self.pull.create_review_comment( |
| 246 | "Comment created by PyGithub", |
| 247 | commit, |
| 248 | "src/github/Issue.py", |
| 249 | 5, |
| 250 | subject_type="file", |
| 251 | ) |
| 252 | self.assertEqual(comment.id, 886298) |
| 253 | |
| 254 | def testCreateMultilineReviewComment(self): |
| 255 | commit = self.repo.get_commit("8a4f306d4b223682dd19410d4a9150636ebe4206") |
nothing calls this directly
no test coverage detected