Skip to content

Commit

Permalink
Update coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
gudmdharalds committed Oct 30, 2023
1 parent bf85af0 commit 044687e
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions tests/integration/ResultsOutputDumpTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ final class ResultsOutputDumpTest extends TestCase {
*
* @return void
*/
protected function setUp() :void {
protected function setUp(): void {
require_once __DIR__ . '/../../results.php';
require_once __DIR__ . '/../../log.php';

Expand Down Expand Up @@ -65,26 +65,26 @@ public function testDumpResults(): void {
'commit' => 'abc123',
'prs_implicated' => array(
1 => (object) array(
'title' => 'testing #1',
'base' => (object) array(
'title' => 'testing #1',
'base' => (object) array(
'ref' => 'main',
),
'head' => (object) array(
'head' => (object) array(
'ref' => 'add/testing1',
),
'user' => (object) array(
'user' => (object) array(
'login' => 'user1',
),
),
2 => (object) array(
'title' => 'testing #2',
'base' => (object) array(
'title' => 'testing #2',
'base' => (object) array(
'ref' => 'main',
),
'head' => (object) array(
'head' => (object) array(
'ref' => 'add/testing2',
),
'user' => (object) array(
'user' => (object) array(
'login' => 'user2',
),
),
Expand Down

0 comments on commit 044687e

Please sign in to comment.