diff options
author | Liam Jack <cuonic@cuonic.com> | 2015-10-05 22:37:29 +0200 |
---|---|---|
committer | Liam Jack <cuonic@cuonic.com> | 2015-10-05 22:37:29 +0200 |
commit | dd28d97a33eb2b386f2a27e0ed9aec138e33c1b7 (patch) | |
tree | a371f225fd36622fb07c94f4cc09e446554fee1f | |
parent | a6fa6fc7b8b29a77e060b7f0d99851126f550fa7 (diff) | |
download | PHPAuth-dd28d97a33eb2b386f2a27e0ed9aec138e33c1b7.zip PHPAuth-dd28d97a33eb2b386f2a27e0ed9aec138e33c1b7.tar.gz PHPAuth-dd28d97a33eb2b386f2a27e0ed9aec138e33c1b7.tar.bz2 |
More testing updates, fixing minor errors
-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", ""); |