Skip to content

Commit 7100074

Browse files
committed
cs
1 parent a08565b commit 7100074

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Controller/WebhookControllerTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ public function setup()
2626
$pullRequestApi = self::$container->get(PullRequestApi::class);
2727

2828
ServiceMock::all($pullRequestApi, 'show', function ($repository, $id) {
29-
if ($id !== 4711) {
29+
if (4711 !== $id) {
3030
return [];
3131
}
3232

33-
return ['title'=>'Readme update', 'labels' => [
33+
return ['title' => 'Readme update', 'labels' => [
3434
['name' => 'Messenger', 'color' => 'dddddd'],
3535
]];
3636
});

0 commit comments

Comments
 (0)