Skip to content

Commit

Permalink
Merge pull request #568 from Chris53897/feature/fix-phpunit-tests
Browse files Browse the repository at this point in the history
tests: fix running tests on local machine (mac m1)
  • Loading branch information
danielmorell committed May 16, 2022
2 parents 63245d7 + 4109365 commit d6ec7a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DataBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ protected function setLocalVarsDump($config)
$this->localVarsDump = self::$defaults->localVarsDump($fromConfig);
if ($this->localVarsDump && !empty(ini_get('zend.exception_ignore_args'))) {
ini_set('zend.exception_ignore_args', '0');
assert(empty(ini_get('zend.exception_ignore_args')));
assert(empty(ini_get('zend.exception_ignore_args')) || ini_get('zend.exception_ignore_args') == "0");
}
}

Expand Down

0 comments on commit d6ec7a3

Please sign in to comment.