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:
parent
4852a134da
commit
4645e00b05
2
.github/workflows/phpunit.yml
vendored
2
.github/workflows/phpunit.yml
vendored
@ -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]
|
||||
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user