diff options
-rw-r--r-- | .travis.yml | 5 | ||||
-rw-r--r-- | tests/AuthTest.php | 2 |
2 files changed, 1 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml index fa85a9d..c59da89 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,11 +4,6 @@ php: - 5.4 - 5.5 - 5.6 - - hhvm - -matrix: - allow_failures: - - php: hhvm before_script: - mysql -e 'create database phpauthtest;' diff --git a/tests/AuthTest.php b/tests/AuthTest.php index f8769ea..31c4c52 100644 --- a/tests/AuthTest.php +++ b/tests/AuthTest.php @@ -12,7 +12,7 @@ class AuthTest extends PHPUnit_Framework_TestCase { require_once __DIR__ . '/../auth.class.php'; require_once __DIR__ . '/../config.class.php'; - require_once __DIR__ . '/../languages/en_GB.php'; + require __DIR__ . '/../languages/en_GB.php'; // $dbh = new PDO(sqlite::memory:); $this->dbh = new PDO("mysql:host=127.0.0.1;dbname=phpauthtest", "root", ""); |