Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Code Duplication    Length = 9-9 lines in 2 locations

tests/Unit/CrudPanel/CrudPanelDeleteTest.php 1 location

@@ 26-34 (lines=9) @@
23
        $this->assertNull($deletedArticle);
24
    }
25
26
    public function testDeleteUnknown()
27
    {
28
        $this->setExpectedException(ModelNotFoundException::class);
29
30
        $this->crudPanel->setModel(Article::class);
31
        $unknownId = DB::getPdo()->lastInsertId() + 1;
32
33
        $this->crudPanel->delete($unknownId);
34
    }
35
}
36

tests/Unit/CrudPanel/CrudPanelReadTest.php 1 location

@@ 152-160 (lines=9) @@
149
        $this->assertInstanceOf(Article::class, $articleEntry);
150
    }
151
152
    public function testGetEntryUnknownId()
153
    {
154
        $this->setExpectedException(ModelNotFoundException::class);
155
156
        $this->crudPanel->setModel(User::class);
157
158
        $unknownId = DB::getPdo()->lastInsertId() + 1;
159
        $this->crudPanel->getEntry($unknownId);
160
    }
161
162
    public function testAutoEagerLoadRelationshipColumns()
163
    {