Skip to content
This repository has been archived by the owner on Jul 6, 2020. It is now read-only.

Commit

Permalink
blubb
Browse files Browse the repository at this point in the history
  • Loading branch information
Bernhard Posselt committed Apr 28, 2016
1 parent 5b91cb3 commit 537190c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/upgrade/UpgradeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function testUpgrade() {
$this->config->expects($this->once())
->method('getAppValue')
->with($this->equalTo('news'), $this->equalTo('installed_version'))
->will($this->returnValue('8.0.0'));
->will($this->returnValue('8.7.3'));

$this->service->expects($this->once())
->method('generateSearchIndices');
Expand All @@ -61,7 +61,7 @@ public function testNoUpgrade() {
$this->config->expects($this->once())
->method('getAppValue')
->with($this->equalTo('news'), $this->equalTo('installed_version'))
->will($this->returnValue('8.0.1'));
->will($this->returnValue('8.7.4'));

$this->service->expects($this->never())
->method('generateSearchIndices');
Expand Down

0 comments on commit 537190c

Please sign in to comment.