X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/a6633642232efd164d4708967ab59e498fbff896..refs/pull/2986/head:/tests/Entity/CommentTest.php diff --git a/tests/Entity/CommentTest.php b/tests/Entity/CommentTest.php index 63d1a29a2..3bf51556e 100644 --- a/tests/Entity/CommentTest.php +++ b/tests/Entity/CommentTest.php @@ -1,12 +1,13 @@ -asAdmin(); @@ -22,11 +23,11 @@ class CommentTest extends TestCase $pageResp->assertSee($comment->text); $this->assertDatabaseHas('comments', [ - 'local_id' => 1, - 'entity_id' => $page->id, + 'local_id' => 1, + 'entity_id' => $page->id, 'entity_type' => Page::newModelInstance()->getMorphClass(), - 'text' => $comment->text, - 'parent_id' => 2 + 'text' => $comment->text, + 'parent_id' => 2, ]); } @@ -49,8 +50,8 @@ class CommentTest extends TestCase $resp->assertDontSee($comment->text); $this->assertDatabaseHas('comments', [ - 'text' => $newText, - 'entity_id' => $page->id + 'text' => $newText, + 'entity_id' => $page->id, ]); } @@ -68,7 +69,7 @@ class CommentTest extends TestCase $resp->assertStatus(200); $this->assertDatabaseMissing('comments', [ - 'id' => $comment->id + 'id' => $comment->id, ]); } @@ -80,10 +81,10 @@ class CommentTest extends TestCase ]); $this->assertDatabaseHas('comments', [ - 'entity_id' => $page->id, + 'entity_id' => $page->id, 'entity_type' => $page->getMorphClass(), - 'text' => '# My Title', - 'html' => "

My Title

\n", + 'text' => '# My Title', + 'html' => "

My Title

\n", ]); $pageView = $this->get($page->getUrl());