mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-05-04 00:09:58 +00:00
Applied latest StyleCI changes
This commit is contained in:
parent
d5b7fff102
commit
f1a8ad4980
4 changed files with 18 additions and 18 deletions
tests/Api
|
@ -125,9 +125,9 @@ class RecycleBinApiTest extends TestCase
|
|||
'parent' => [
|
||||
'id' => $page->chapter->id,
|
||||
'name' => $page->chapter->name,
|
||||
'type' => 'chapter'
|
||||
]
|
||||
]
|
||||
'type' => 'chapter',
|
||||
],
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
|
@ -152,7 +152,7 @@ class RecycleBinApiTest extends TestCase
|
|||
|
||||
$resp = $this->putJson($this->baseEndpoint . '/' . $deletion->id);
|
||||
$resp->assertJson([
|
||||
'restore_count' => 1
|
||||
'restore_count' => 1,
|
||||
]);
|
||||
|
||||
$this->assertDatabaseHas('pages', [
|
||||
|
@ -176,7 +176,7 @@ class RecycleBinApiTest extends TestCase
|
|||
|
||||
$resp = $this->deleteJson($this->baseEndpoint . '/' . $deletion->id);
|
||||
$resp->assertJson([
|
||||
'delete_count' => 1
|
||||
'delete_count' => 1,
|
||||
]);
|
||||
|
||||
$this->assertDatabaseMissing('pages', ['id' => $page->id]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue