feature/cierres #25

Open
aldarien wants to merge 446 commits from feature/cierres into develop
104 changed files with 400 additions and 3058 deletions
Showing only changes of commit 7f97862324 - Show all commits

View File

@ -123,7 +123,7 @@ class QueueTest extends TestCase
$cuotaData = [
'pie' => $pie->id,
'fecha' => '2022-01-01',
'fecha' => $faker->dateTimeBetween('2024-01-01')->format('Y-m-d'),
'valor' => 10000,
'banco' => $banco->id,
];
@ -135,6 +135,6 @@ class QueueTest extends TestCase
$queueService->run();
$cuota = $cuotaService->getById($cuota->id);
$this->assertNotEquals(0.0, $cuota->pago->uf);
$this->assertGreaterThan(0.0, $cuota->pago->uf);
}
}