diff options
author | Andreas Fischer <bantu@owncloud.com> | 2015-05-07 12:24:06 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@owncloud.com> | 2015-05-07 12:24:06 +0200 |
commit | 4f6ecd3da6975f15188641ec2f111a3e38a30f0a (patch) | |
tree | e1fb56607c3c21beba7118059a855f5d7dc383ee | |
parent | 234429895485c1003cad7e001e7ba88ec13343f5 (diff) | |
download | nextcloud-server-4f6ecd3da6975f15188641ec2f111a3e38a30f0a.tar.gz nextcloud-server-4f6ecd3da6975f15188641ec2f111a3e38a30f0a.zip |
\OC\Connector\Sabre\CopyEtagHeaderPlugin constructor does not take arguments.
-rw-r--r-- | tests/lib/connector/sabre/copyetagheaderplugintest.php | 2 |
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); } |