summaryrefslogtreecommitdiffstats
path: root/tests/Bootstrap.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-05-25 00:02:43 +0200
committerAndrey Andreev <narf@bofh.bg>2012-05-25 00:02:43 +0200
commitb24a389ad4c12325c0dce9bbf7a04ceb056374d5 (patch)
tree3c5db13aa2ec1dbaf1c22ec1b7caa7ff05686e21 /tests/Bootstrap.php
parent21cb2d32edd595a38189cdba137e694c3a22e1f0 (diff)
parent6a43244e1d739db17db266456221099232d120d6 (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.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;