mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-07-28 17:02:04 +03:00
Applied styleci patches
This commit is contained in:
@ -353,7 +353,7 @@ class ExportTest extends TestCase
|
||||
|
||||
foreach ($entities as $entity) {
|
||||
$resp = $this->get($entity->getUrl());
|
||||
$resp->assertSee("/export/pdf");
|
||||
$resp->assertSee('/export/pdf');
|
||||
}
|
||||
|
||||
/** @var Role $role */
|
||||
@ -361,8 +361,8 @@ class ExportTest extends TestCase
|
||||
|
||||
foreach ($entities as $entity) {
|
||||
$resp = $this->get($entity->getUrl());
|
||||
$resp->assertDontSee("/export/pdf");
|
||||
$resp = $this->get($entity->getUrl("/export/pdf"));
|
||||
$resp->assertDontSee('/export/pdf');
|
||||
$resp = $this->get($entity->getUrl('/export/pdf'));
|
||||
$this->assertPermissionError($resp);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user