-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[stagehandtestrunner] Updated testrunner.php for launching.
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env php | ||
#!/usr/bin/php | ||
<?php | ||
/* vim: set expandtab tabstop=4 shiftwidth=4: */ | ||
|
||
|
@@ -32,7 +32,7 @@ | |
* @package Stagehand_TestRunner | ||
* @copyright 2011-2012 KUBO Atsuhiro <[email protected]> | ||
* @license http://www.opensource.org/licenses/bsd-license.php New BSD License | ||
* @version Release: 3.4.0 | ||
* @version Release: 3.5.0 | ||
* @since File available since Release 3.0.0 | ||
*/ | ||
|
||
|
@@ -137,7 +137,7 @@ function preloadScript() | |
if (!is_null($preloadScript)) { | ||
$result = include_once $preloadScript; | ||
if (!$result) { | ||
throw \UnexpectedValueException(sprintf( | ||
throw new \UnexpectedValueException(sprintf( | ||
'Cannot load [ %s ]. Make sure the file path and permission are correct.', | ||
$preloadScript | ||
)); | ||
|