diff --git a/tests/controllers/BudgetControllerTest.php b/tests/controllers/BudgetControllerTest.php index 6fd167c1e4..cda4cadd0f 100644 --- a/tests/controllers/BudgetControllerTest.php +++ b/tests/controllers/BudgetControllerTest.php @@ -113,7 +113,7 @@ class BudgetControllerTest extends TestCase $repository->shouldReceive('getActiveBudgets')->once()->andReturn($collection); $repository->shouldReceive('getInactiveBudgets')->once()->andReturn($collection); $repository->shouldReceive('cleanupBudgets')->once(); - $repository->shouldReceive('spentInPeriod')->once(); + $repository->shouldReceive('spentInPeriodCorrected')->once(); $repository->shouldReceive('getCurrentRepetition')->once(); Amount::shouldReceive('getCurrencySymbol')->andReturn('x'); Amount::shouldReceive('format')->andReturn('x'); diff --git a/tests/controllers/JsonControllerTest.php b/tests/controllers/JsonControllerTest.php index ad7cc96030..d88e55f368 100644 --- a/tests/controllers/JsonControllerTest.php +++ b/tests/controllers/JsonControllerTest.php @@ -98,7 +98,7 @@ class JsonControllerTest extends TestCase $this->be($user); $repository = $this->mock('FireflyIII\Helpers\Report\ReportQueryInterface'); - $repository->shouldReceive('incomeInPeriod')->andReturn(new Collection); + $repository->shouldReceive('incomeInPeriodCorrected')->andReturn(new Collection); Amount::shouldReceive('format')->andReturn('xx'); Amount::shouldReceive('getCurrencyCode')->andReturn('X'); @@ -112,7 +112,7 @@ class JsonControllerTest extends TestCase $this->be($user); $repository = $this->mock('FireflyIII\Helpers\Report\ReportQueryInterface'); - $repository->shouldReceive('expenseInPeriod')->andReturn(new Collection); + $repository->shouldReceive('expenseInPeriodCorrected')->andReturn(new Collection); Amount::shouldReceive('format')->andReturn('xx'); Amount::shouldReceive('getCurrencyCode')->andReturn('X');