diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-05-25 00:02:43 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-05-25 00:02:43 +0200 |
commit | b24a389ad4c12325c0dce9bbf7a04ceb056374d5 (patch) | |
tree | 3c5db13aa2ec1dbaf1c22ec1b7caa7ff05686e21 /tests/Bootstrap.php | |
parent | 21cb2d32edd595a38189cdba137e694c3a22e1f0 (diff) | |
parent | 6a43244e1d739db17db266456221099232d120d6 (diff) |
Merge pull request #1394 from toopay/db-test-suite
Escape like tests, #136 verification
Diffstat (limited to 'tests/Bootstrap.php')
-rw-r--r-- | tests/Bootstrap.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Bootstrap.php b/tests/Bootstrap.php index 1dbd178ca..38615dd89 100644 --- a/tests/Bootstrap.php +++ b/tests/Bootstrap.php @@ -15,7 +15,7 @@ define('VIEWPATH', PROJECT_BASE.''); // Get vfsStream either via PEAR or composer foreach (explode(PATH_SEPARATOR, get_include_path()) as $path) { - if (file_exists($path.DIRECTORY_SEPARATOR.'vfsStream/vfsStream.phps')) + if (file_exists($path.DIRECTORY_SEPARATOR.'vfsStream/vfsStream.php')) { require_once 'vfsStream/vfsStream.php'; break; |