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

github.com/nextcloud/announcementcenter.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-09-11 17:49:54 +0300
committerJoas Schilling <coding@schilljs.com>2020-09-11 17:49:54 +0300
commitc2dc6f0f9c874af36195993bd1533355e4e2d74b (patch)
treee9ae6f126c0ae332e5220ff428c2ff0f2e8dd5be /tests
parent75ea1859172695847b014c92fb95d47b7699b5f9 (diff)
Fix CS
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/Activity/SettingTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Activity/SettingTest.php b/tests/Activity/SettingTest.php
index e72923b..8ec21b6 100644
--- a/tests/Activity/SettingTest.php
+++ b/tests/Activity/SettingTest.php
@@ -69,7 +69,7 @@ class SettingTest extends TestCase {
/** @var ISetting $setting */
$setting = \OC::$server->query($settingClass);
$priority = $setting->getPriority();
- $this->assertIsInt( $setting->getPriority());
+ $this->assertIsInt($setting->getPriority());
$this->assertGreaterThanOrEqual(0, $priority);
$this->assertLessThanOrEqual(100, $priority);
}