From 9f63d9ed0fe97a8b21efc116f4f2e2d8d1169ed5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Thu, 27 Jul 2023 22:57:36 +0200 Subject: [PATCH] Fix test on RefreshAddressToGeographicalUnitMaterializedViewCronJob Alter the signature on run: add an empty array --- ...reshAddressToGeographicalUnitMaterializedViewCronJobTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Bundle/ChillMainBundle/Tests/Services/AddressGeographicalUnit/RefreshAddressToGeographicalUnitMaterializedViewCronJobTest.php b/src/Bundle/ChillMainBundle/Tests/Services/AddressGeographicalUnit/RefreshAddressToGeographicalUnitMaterializedViewCronJobTest.php index 687d5df2b..f2a7bcd47 100644 --- a/src/Bundle/ChillMainBundle/Tests/Services/AddressGeographicalUnit/RefreshAddressToGeographicalUnitMaterializedViewCronJobTest.php +++ b/src/Bundle/ChillMainBundle/Tests/Services/AddressGeographicalUnit/RefreshAddressToGeographicalUnitMaterializedViewCronJobTest.php @@ -91,6 +91,6 @@ final class RefreshAddressToGeographicalUnitMaterializedViewCronJobTest extends $this->assertIsBool($job->canRun($lastExecution)); - $job->run(); + $job->run([]); } }