1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00

Change for task imports.

This commit is contained in:
David Bomba 2024-05-04 09:15:54 +10:00
parent 52df4708d6
commit 244eabc448

View File

@ -96,7 +96,7 @@ class TaskImportTest extends TestCase
$time_log = json_decode($task->time_log);
foreach($time_log as $log) {
$this->assertFalse($log[3]);
$this->assertTrue($log[3]);
}
$task = Task::where('company_id', $this->company->id)->where('number', 'x1233')->first();
@ -106,7 +106,7 @@ class TaskImportTest extends TestCase
$time_log = json_decode($task->time_log);
foreach($time_log as $log) {
$this->assertFalse($log[3]);
$this->assertTrue($log[3]);
}