1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2026-01-03 23:42:28 +03:00

Applied styleci style changes

This commit is contained in:
Dan Brown
2021-09-18 21:21:44 +01:00
parent 6454e24657
commit c08c8d7aa3
10 changed files with 51 additions and 55 deletions

View File

@@ -227,7 +227,7 @@ class PageTest extends TestCase
// Need to save twice since revisions are not generated in seeder.
$this->asAdmin()->put($page->getUrl(), [
'name' => 'super test',
'html' => '<p></p>'
'html' => '<p></p>',
]);
$page->refresh();
@@ -235,7 +235,7 @@ class PageTest extends TestCase
$this->put($pageUrl, [
'name' => 'super test page',
'html' => '<p></p>'
'html' => '<p></p>',
]);
$this->get($pageUrl)
@@ -280,5 +280,4 @@ class PageTest extends TestCase
$this->get('/')
->assertElementContains('#recently-updated-pages', $page->name);
}
}