diff options
author | George Petculescu <gxgpet@gmail.com> | 2021-05-31 12:23:32 +0200 |
---|---|---|
committer | George Petculescu <gxgpet@gmail.com> | 2021-05-31 12:23:32 +0200 |
commit | 56de63c5bdfd7962d2e64d6d9b0a5b7914d4ec6c (patch) | |
tree | be05a1326d053e22a7cf13aa99dc76b0357b351c /tests/mocks | |
parent | 5fe5a94930d58f2d6dcdda2a3b0d97978b3c3c8d (diff) |
Upgrade to latest mikey179/vfsstream
Diffstat (limited to 'tests/mocks')
-rw-r--r-- | tests/mocks/ci_testcase.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/mocks/ci_testcase.php b/tests/mocks/ci_testcase.php index 8dc4682ef..fbd56af03 100644 --- a/tests/mocks/ci_testcase.php +++ b/tests/mocks/ci_testcase.php @@ -35,7 +35,7 @@ class CI_TestCase extends PHPUnit_Framework_TestCase { public function setUp() { // Setup VFS with base directories - $this->ci_vfs_root = vfsStream::setup(); + $this->ci_vfs_root = vfsStream::setup(''); $this->ci_app_root = vfsStream::newDirectory('application')->at($this->ci_vfs_root); $this->ci_base_root = vfsStream::newDirectory('system')->at($this->ci_vfs_root); $this->ci_view_root = vfsStream::newDirectory('views')->at($this->ci_app_root); |