mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-07-31 15:24:31 +03:00
Fixed failing tests due to shelf text changes, applied styleci changes
This commit is contained in:
@ -215,7 +215,7 @@ class PageDraftTest extends TestCase
|
||||
|
||||
$this->put('/ajax/page/' . $draft->id . '/save-draft', [
|
||||
'name' => 'My page',
|
||||
'markdown' => "Update test",
|
||||
'markdown' => 'Update test',
|
||||
])->assertOk();
|
||||
|
||||
$draft->refresh();
|
||||
@ -223,7 +223,7 @@ class PageDraftTest extends TestCase
|
||||
|
||||
$this->post($draft->getUrl(), [
|
||||
'name' => 'My page',
|
||||
'markdown' => "# My markdown page"
|
||||
'markdown' => '# My markdown page',
|
||||
]);
|
||||
|
||||
$this->assertDatabaseHas('pages', [
|
||||
|
Reference in New Issue
Block a user