summaryrefslogtreecommitdiffstats
path: root/tests/Bootstrap.php
diff options
context:
space:
mode:
authorTaufan Aditya <toopay@taufanaditya.com>2012-05-24 23:03:56 +0200
committerTaufan Aditya <toopay@taufanaditya.com>2012-05-24 23:03:56 +0200
commit2d57445ba66f8b6e5fef526b932d691b0e5690db (patch)
treec9f727405e96d517a6d9bf27cc2a83cae317778f /tests/Bootstrap.php
parent846acc7926ccb991d39135353d5047e7de5bcb60 (diff)
Escape like tests, #136 verification
Diffstat (limited to 'tests/Bootstrap.php')
-rw-r--r--tests/Bootstrap.php2
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;