Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Pelaez committed Dec 1, 2016
1 parent 1e2e274 commit eeec24a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion tests/drivers/commandTest/commandAccessTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ protected function tearDown() {
}

public function testCommand_Default_Access_Guest_fail() {
$resp = driverCommand::getAccess();
$resp = driverCommand::getAccess();
$this->assertFalse($resp);
}

Expand Down
5 changes: 5 additions & 0 deletions tests/drivers/etc/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

//error_reporting(E_ALL | E_STRICT);
error_reporting(E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR);
ini_set('display_errors', '1');
ini_set('display_startup_errors', '1');

if (isset($_SERVER["TRAVIS"]) && $_SERVER["TRAVIS"]) {
$_SERVER["HTTP_HOST"] = "localhost";
phpInfo();
Expand Down

0 comments on commit eeec24a

Please sign in to comment.