diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2014-06-02 15:12:31 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-06-04 07:55:46 +0200 |
commit | 2b30fb4862ac8c97dad4bde55a3ff8e406c74e47 (patch) | |
tree | 41721451bfce5948fd10a82740a5f2171f94f7b9 /tests/lib/files/mount | |
parent | ab6680e9ab4c7ba24bcd47c01b46d2ca8993bc96 (diff) | |
download | nextcloud-server-2b30fb4862ac8c97dad4bde55a3ff8e406c74e47.tar.gz nextcloud-server-2b30fb4862ac8c97dad4bde55a3ff8e406c74e47.zip |
fix unit test after adding the additional parameter to addStorageWrapper()
Diffstat (limited to 'tests/lib/files/mount')
-rw-r--r-- | tests/lib/files/mount/mount.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/files/mount/mount.php b/tests/lib/files/mount/mount.php index b057204ad35..c3d33e0870b 100644 --- a/tests/lib/files/mount/mount.php +++ b/tests/lib/files/mount/mount.php @@ -35,7 +35,7 @@ class Mount extends \PHPUnit_Framework_TestCase { }; $loader = new Loader(); - $loader->addStorageWrapper($wrapper); + $loader->addStorageWrapper('test_wrapper', $wrapper); $storage = $this->getMockBuilder('\OC\Files\Storage\Temporary') ->disableOriginalConstructor() |