1
0
mirror of https://github.com/danog/parallel.git synced 2024-11-30 04:39:01 +01:00

Rename test file with parse error so php-cs-fixer ignores it

This commit is contained in:
Aaron Piotrowski 2017-12-13 14:21:37 -06:00
parent 312aecf1ff
commit acdfa66b12
No known key found for this signature in database
GPG Key ID: ADD1EF783EDE9EEB
2 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ class ProcessTest extends TestCase {
* @expectedExceptionMessage Uncaught ParseError in execution context
*/
public function testParseError() {
$process = new Process(__DIR__ . "/parse-error-process.php");
$process = new Process(__DIR__ . "/parse-error-process.inc");
$process->start();
var_dump(Promise\wait($process->join()));
}