1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-08 20:22:42 +01:00

Fixes for tests

This commit is contained in:
David Bomba 2024-05-29 23:35:56 +10:00
parent 4852a134da
commit 4645e00b05
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ jobs:
php-versions: ['8.2']
phpunit-versions: ['latest']
ci_node_total: [ 8 ]
ci_node_index: [ 0, 1]
ci_node_index: [ 0, 1, 2, 3, 4, 5, 6, 7]
laravel: [10.*]
dependency-version: [prefer-stable]

View File

@ -85,7 +85,7 @@ class ExpenseExport extends BaseExport
->where('company_id', $this->company->id);
if(!$this->input['include_deleted']) {
if(!$this->input['include_deleted'] ?? false){
$query->where('is_deleted', 0);
}