Skip to content

Commit

Permalink
Removed dollars from arithmetic variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Ken committed May 10, 2018
1 parent 7fa6d60 commit a6e71eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions includes/magento2/phpunit.inc.bash
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ qaQuickTests="$phpUnitQuickTests" $phpCmd -f bin/phpunit \

phpunitExitCode=$?
set +x
if (( $phpunitExitCode > 0 ))
if (( phpunitExitCode > 0 ))
then
if (( $phpunitExitCode > 2 ))
if (( phpunitExitCode > 2 ))
then
printf "\n\n\nPHPUnit Crashed\n\nRunning again with Debug mode...\n\n\n"
qaQuickTests="$phpUnitQuickTests" phpNoXdebug -f bin/phpunit -- --debug
Expand Down

0 comments on commit a6e71eb

Please sign in to comment.