Cleaned up check+conversion that was no longer required.
parent
523362c7c5
commit
3e06c801f4
|
@ -159,9 +159,7 @@ class InstallerTest extends TestCase
|
||||||
->will($this->returnCallback($callback));
|
->will($this->returnCallback($callback));
|
||||||
|
|
||||||
// Prepare for exceptions
|
// Prepare for exceptions
|
||||||
if (is_int($expectResult) || ctype_digit($expectResult)) {
|
if (!is_int($expectResult)) {
|
||||||
$expectResult = (int) $expectResult;
|
|
||||||
} else {
|
|
||||||
$normalizedOutput = rtrim(str_replace("\n", PHP_EOL, $expect));
|
$normalizedOutput = rtrim(str_replace("\n", PHP_EOL, $expect));
|
||||||
$this->setExpectedException($expectResult, $normalizedOutput);
|
$this->setExpectedException($expectResult, $normalizedOutput);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue