]> BookStack Code Mirror - bookstack/blobdiff - tests/Permissions/ExportPermissionsTest.php
Fixed local_secure_restricted preventing attachment uploads
[bookstack] / tests / Permissions / ExportPermissionsTest.php
index 32ee9e7d6d66f209d8cd14653a6c6423fc147f68..2e3d84fa13e23a263870252f7201f2ed9818a827 100644 (file)
@@ -1,13 +1,14 @@
-<?php namespace Tests\Permissions;
+<?php
 
-use BookStack\Entities\Book;
-use BookStack\Entities\Chapter;
+namespace Tests\Permissions;
+
+use BookStack\Entities\Models\Book;
+use BookStack\Entities\Models\Chapter;
 use Illuminate\Support\Str;
 use Tests\TestCase;
 
 class ExportPermissionsTest extends TestCase
 {
-
     public function test_page_content_without_view_access_hidden_on_chapter_export()
     {
         $chapter = Chapter::query()->first();
@@ -63,5 +64,4 @@ class ExportPermissionsTest extends TestCase
             $resp->assertDontSee($pageContent);
         }
     }
-
-}
\ No newline at end of file
+}