We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9098dcc commit 3e3b8eeCopy full SHA for 3e3b8ee
src/AppBundle/Tests/Subscriber/StatusChangeByCommentSubscriberTest.php
@@ -49,8 +49,8 @@ public function testOnIssueComment($comment, $expectedStatus)
49
}
50
51
$event = new GitHubEvent(array(
52
- 'issue' => array('number' => 1234),
53
- 'comment' => array('body' => $comment),
+ 'issue' => array('number' => 1234, 'user' => ['login' => 'weaverryan']),
+ 'comment' => array('body' => $comment, 'user' => ['login' => 'leannapelham']),
54
), $this->repository);
55
56
self::$dispatcher->dispatch(GitHubEvents::ISSUE_COMMENT, $event);
0 commit comments