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:
Diffstat (limited to 'tests/lib/Collaboration/Collaborators/LookupPluginTest.php')
-rw-r--r--tests/lib/Collaboration/Collaborators/LookupPluginTest.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/lib/Collaboration/Collaborators/LookupPluginTest.php b/tests/lib/Collaboration/Collaborators/LookupPluginTest.php
index 0a1febe33a5..81279c4c569 100644
--- a/tests/lib/Collaboration/Collaborators/LookupPluginTest.php
+++ b/tests/lib/Collaboration/Collaborators/LookupPluginTest.php
@@ -97,7 +97,7 @@ class LookupPluginTest extends TestCase {
->willReturn(false);
$this->config->expects($this->at(2))
- ->method('getSystemValue')
+ ->method('getSystemValueBool')
->with('has_internet_connection', true)
->willReturn(true);
$this->config->expects($this->at(3))
@@ -125,7 +125,7 @@ class LookupPluginTest extends TestCase {
->willReturn(false);
$this->config->expects($this->at(2))
- ->method('getSystemValue')
+ ->method('getSystemValueBool')
->with('has_internet_connection', true)
->willReturn(false);
@@ -161,7 +161,7 @@ class LookupPluginTest extends TestCase {
->willReturn(false);
$this->config->expects($this->at(2))
- ->method('getSystemValue')
+ ->method('getSystemValueBool')
->with('has_internet_connection', true)
->willReturn(true);
$this->config->expects($this->at(3))
@@ -224,7 +224,7 @@ class LookupPluginTest extends TestCase {
->with($type, $searchParams['expectedResult'], []);
$this->config->expects($this->at(2))
- ->method('getSystemValue')
+ ->method('getSystemValueBool')
->with('has_internet_connection', true)
->willReturn(true);
$this->config->expects($this->at(3))