summaryrefslogtreecommitdiffstats
path: root/tests/Unit/Controller/ItemApiControllerTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/Controller/ItemApiControllerTest.php')
-rw-r--r--tests/Unit/Controller/ItemApiControllerTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Unit/Controller/ItemApiControllerTest.php b/tests/Unit/Controller/ItemApiControllerTest.php
index b65b1245f..749bb2d98 100644
--- a/tests/Unit/Controller/ItemApiControllerTest.php
+++ b/tests/Unit/Controller/ItemApiControllerTest.php
@@ -502,7 +502,7 @@ class ItemApiControllerTest extends TestCase
public function testStarByItemId()
{
$this->itemService->expects($this->once())
- ->method('starByItemId')
+ ->method('star')
->with($this->uid, 123, true);
$this->class->starByItemId(123);
@@ -512,7 +512,7 @@ class ItemApiControllerTest extends TestCase
public function testUnstarByItemId()
{
$this->itemService->expects($this->once())
- ->method('starByItemId')
+ ->method('star')
->with($this->uid, 123, false);
$this->class->unstarByItemId(123);