Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Commit

Permalink
Fix ProcessExecutorTest::testExecute
Browse files Browse the repository at this point in the history
  • Loading branch information
niels-nijens committed Mar 21, 2016
1 parent db865fb commit 8ddb375
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Process/ProcessExecutorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@ public function testExecute()
$this->assertInstanceOf('Accompli\Chrono\Process\ProcessExecutionResult', $processExecutionResult);
$this->assertSame(0, $processExecutionResult->getExitCode());
$this->assertSame('test'.PHP_EOL, $processExecutionResult->getOutput());
$this->assertSame(null, $processExecutionResult->getErrorOutput());
$this->assertEquals('', $processExecutionResult->getErrorOutput());
}
}

0 comments on commit 8ddb375

Please sign in to comment.