]> BookStack Code Mirror - bookstack/blobdiff - tests/Uploads/AttachmentTest.php
Show bookshelves that a book belongs to on a book view
[bookstack] / tests / Uploads / AttachmentTest.php
index 35ffda821ef35262f1b135fcde4c8cbc90c7a519..0d51e050fa6c421c4d6593e94570687055f42a49 100644 (file)
@@ -78,7 +78,7 @@ class AttachmentTest extends TestCase
         $upload->assertStatus(200);
 
         $attachment = Attachment::query()->orderBy('id', 'desc')->first();
-        $this->assertNotContains($fileName, $attachment->path);
+        $this->assertStringNotContainsString($fileName, $attachment->path);
         $this->assertStringEndsWith('.txt', $attachment->path);
     }