X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/c157dc3490c39aa236e22714019a649ebeb11f13..refs/pull/2393/head:/tests/CommandsTest.php diff --git a/tests/CommandsTest.php b/tests/CommandsTest.php index 7e931ee96..8c6ea84bf 100644 --- a/tests/CommandsTest.php +++ b/tests/CommandsTest.php @@ -4,8 +4,8 @@ use BookStack\Actions\ActivityType; use BookStack\Actions\Comment; use BookStack\Actions\CommentRepo; use BookStack\Auth\Permissions\JointPermission; -use BookStack\Entities\Bookshelf; -use BookStack\Entities\Page; +use BookStack\Entities\Models\Bookshelf; +use BookStack\Entities\Models\Page; use BookStack\Auth\User; use BookStack\Entities\Repos\PageRepo; use Symfony\Component\Console\Exception\RuntimeException; @@ -38,10 +38,10 @@ class CommandsTest extends TestCase { $this->asEditor(); $page = Page::first(); - \Activity::add($page, ActivityType::PAGE_UPDATE, $page->book->id); + \Activity::addForEntity($page, ActivityType::PAGE_UPDATE); $this->assertDatabaseHas('activities', [ - 'key' => 'page_update', + 'type' => 'page_update', 'entity_id' => $page->id, 'user_id' => $this->getEditor()->id ]); @@ -51,7 +51,7 @@ class CommandsTest extends TestCase $this->assertDatabaseMissing('activities', [ - 'key' => 'page_update' + 'type' => 'page_update' ]); }