summaryrefslogtreecommitdiffstats
path: root/tests/unit/controller/ApiControllerTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/controller/ApiControllerTest.php')
-rw-r--r--tests/unit/controller/ApiControllerTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/controller/ApiControllerTest.php b/tests/unit/controller/ApiControllerTest.php
index ec914a960..26403830f 100644
--- a/tests/unit/controller/ApiControllerTest.php
+++ b/tests/unit/controller/ApiControllerTest.php
@@ -84,14 +84,14 @@ class ApiControllerTest extends ControllerTestUtility {
public function testBeforeUpdate(){
$this->updater->expects($this->once())
->method('beforeUpdate');
- $response = $this->newsAPI->beforeUpdate();
+ $this->newsAPI->beforeUpdate();
}
public function testAfterUpdate(){
$this->updater->expects($this->once())
->method('afterUpdate');
- $response = $this->newsAPI->afterUpdate();
+ $this->newsAPI->afterUpdate();
}