Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2015-05-07 16:38:42 +0300
committerJoas Schilling <nickvergessen@gmx.de>2015-05-07 16:38:42 +0300
commit9f2f2821919ed770fd4ede17f27a22d6c17dc374 (patch)
treee1fb56607c3c21beba7118059a855f5d7dc383ee
parent234429895485c1003cad7e001e7ba88ec13343f5 (diff)
parent4f6ecd3da6975f15188641ec2f111a3e38a30f0a (diff)
Merge pull request #16153 from owncloud/CopyEtagHeaderPlugin-noarg
[HHVM] \OC\Connector\Sabre\CopyEtagHeaderPlugin constructor does not take any arguments
-rw-r--r--tests/lib/connector/sabre/copyetagheaderplugintest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/connector/sabre/copyetagheaderplugintest.php b/tests/lib/connector/sabre/copyetagheaderplugintest.php
index 176f9c8d0ca..6b1b5e96fda 100644
--- a/tests/lib/connector/sabre/copyetagheaderplugintest.php
+++ b/tests/lib/connector/sabre/copyetagheaderplugintest.php
@@ -18,7 +18,7 @@ class CopyEtagPluginTest extends \Test\TestCase {
public function setUp() {
parent::setUp();
$this->server = new \Sabre\DAV\Server();
- $this->plugin = new \OC\Connector\Sabre\CopyEtagHeaderPlugin($this->tree);
+ $this->plugin = new \OC\Connector\Sabre\CopyEtagHeaderPlugin();
$this->plugin->initialize($this->server);
}