summaryrefslogtreecommitdiffstats
path: root/tests/lib
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@owncloud.com>2016-05-23 20:41:51 +0200
committerRoeland Jago Douma <rullzer@owncloud.com>2016-05-23 20:42:08 +0200
commite03e4921a01cd2b01e10db7b5d7bd39dd0224b0b (patch)
tree01d612bc7f54ab71e1eb5080ac4efb17bcb4e6d1 /tests/lib
parent7ef21b0b27206f2b32e7706abf463d277d8f151c (diff)
downloadnextcloud-server-e03e4921a01cd2b01e10db7b5d7bd39dd0224b0b.tar.gz
nextcloud-server-e03e4921a01cd2b01e10db7b5d7bd39dd0224b0b.zip
Fix Name
Diffstat (limited to 'tests/lib')
-rw-r--r--tests/lib/Files/Mount/ObjectHomeMountProviderTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/lib/Files/Mount/ObjectHomeMountProviderTest.php b/tests/lib/Files/Mount/ObjectHomeMountProviderTest.php
index f62dab093b4..202c2c02b98 100644
--- a/tests/lib/Files/Mount/ObjectHomeMountProviderTest.php
+++ b/tests/lib/Files/Mount/ObjectHomeMountProviderTest.php
@@ -42,7 +42,7 @@ class ObjectHomeMountProviderTest extends \Test\TestCase {
$this->user->expects($this->never())->method($this->anything());
$this->loader->expects($this->never())->method($this->anything());
- $config = $this->invokePrivate($this->provider, 'singleBucketObjectStore', [$this->user, $this->loader]);
+ $config = $this->invokePrivate($this->provider, 'getSingleBucketObjectStoreConfig', [$this->user, $this->loader]);
$this->assertArrayHasKey('class', $config);
$this->assertEquals($config['class'], 'Test\Files\Mount\FakeObjectStore');
@@ -66,7 +66,7 @@ class ObjectHomeMountProviderTest extends \Test\TestCase {
->willReturn('uid');
$this->loader->expects($this->never())->method($this->anything());
- $config = $this->invokePrivate($this->provider, 'multiBucketObjectStore', [$this->user, $this->loader]);
+ $config = $this->invokePrivate($this->provider, 'getMultiBucketObjectStoreConfig', [$this->user, $this->loader]);
$this->assertArrayHasKey('class', $config);
$this->assertEquals($config['class'], 'Test\Files\Mount\FakeObjectStore');
@@ -95,7 +95,7 @@ class ObjectHomeMountProviderTest extends \Test\TestCase {
->willReturn('uid');
$this->loader->expects($this->never())->method($this->anything());
- $config = $this->invokePrivate($this->provider, 'multiBucketObjectStore', [$this->user, $this->loader]);
+ $config = $this->invokePrivate($this->provider, 'getMultiBucketObjectStoreConfig', [$this->user, $this->loader]);
$this->assertArrayHasKey('class', $config);
$this->assertEquals($config['class'], 'Test\Files\Mount\FakeObjectStore');