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:
authorMorris Jobke <hey@morrisjobke.de>2020-08-11 22:32:18 +0300
committerMorris Jobke <hey@morrisjobke.de>2020-08-12 14:55:19 +0300
commit234b510652d117bb3ef9ef3b6315db3a2c2eb91b (patch)
tree880cec2bf4fe4846eff9fa5aa68d2671fb0495be /apps/systemtags/tests
parent138f47a1b980aaceb116b256b8ccf14f523e7e67 (diff)
Change PHPDoc type hint from PHPUnit_Framework_MockObject_MockObject to \PHPUnit\Framework\MockObject\MockObject
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'apps/systemtags/tests')
-rw-r--r--apps/systemtags/tests/Activity/SettingTest.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/systemtags/tests/Activity/SettingTest.php b/apps/systemtags/tests/Activity/SettingTest.php
index 9f543031964..cbb2e5da2ce 100644
--- a/apps/systemtags/tests/Activity/SettingTest.php
+++ b/apps/systemtags/tests/Activity/SettingTest.php
@@ -30,7 +30,7 @@ use OCP\IL10N;
use Test\TestCase;
class SettingTest extends TestCase {
- /** @var IL10N|\PHPUnit_Framework_MockObject_MockObject */
+ /** @var IL10N|\PHPUnit\Framework\MockObject\MockObject */
private $l;
/** @var Setting */
private $setting;
@@ -63,15 +63,15 @@ class SettingTest extends TestCase {
public function testCanChangeStream() {
$this->assertSame(true, $this->setting->canChangeStream());
}
-
+
public function testIsDefaultEnabledStream() {
$this->assertSame(true, $this->setting->isDefaultEnabledStream());
}
-
+
public function testCanChangeMail() {
$this->assertSame(true, $this->setting->canChangeMail());
}
-
+
public function testIsDefaultEnabledMail() {
$this->assertSame(false, $this->setting->isDefaultEnabledMail());
}