Skip to content

Commit

Permalink
#1437 update atoum + fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
stakovicz committed Feb 5, 2024
1 parent b04aa31 commit 7dc927d
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 14 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,12 @@
],
"minimum-stability": "stable",
"require-dev": {
"atoum/atoum": "^2.8",
"atoum/atoum": "^3.0",
"atoum/stubs": "^2.5",
"friendsofphp/php-cs-fixer": "~2",
"behat/behat": "^3.7",
"behat/mink-extension": "^2.3",
"behat/mink-goutte-driver": "^1.2",
"friendsofphp/php-cs-fixer": "~2",
"smalot/pdfparser": "^0.19.0"
},
"repositories": [
Expand Down
25 changes: 14 additions & 11 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sources/AppBundle/Compta/Importer/CreditMutuel.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public function extract()
continue;
}

if (count($data) !== 6) {
if (!$data || count($data) !== 6) {
continue;
}

Expand Down

0 comments on commit 7dc927d

Please sign in to comment.