diff options
author | Morris Jobke <hey@morrisjobke.de> | 2020-10-28 22:51:49 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2020-10-28 23:05:00 +0100 |
commit | b8ed99723822d23c9a3a0b413eb237c93fc60c99 (patch) | |
tree | a3e2136a5faa0ac5bca63d3d2f6936272edbd0db /apps/theming | |
parent | ef382f541c42f719b8dd30a4e0e248ef1bc39c84 (diff) | |
download | nextcloud-server-b8ed99723822d23c9a3a0b413eb237c93fc60c99.tar.gz nextcloud-server-b8ed99723822d23c9a3a0b413eb237c93fc60c99.zip |
Remove ISection in favor of IIconSection
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'apps/theming')
-rw-r--r-- | apps/theming/tests/ServicesTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/theming/tests/ServicesTest.php b/apps/theming/tests/ServicesTest.php index ce893c8cccb..2705c7a4ece 100644 --- a/apps/theming/tests/ServicesTest.php +++ b/apps/theming/tests/ServicesTest.php @@ -34,7 +34,7 @@ use OCA\Theming\Util; use OCP\AppFramework\App; use OCP\Capabilities\ICapability; use OCP\IL10N; -use OCP\Settings\ISection; +use OCP\Settings\IIconSection; use OCP\Settings\ISettings; use Test\TestCase; @@ -75,7 +75,7 @@ class ServicesTest extends TestCase { [Admin::class], [Admin::class, ISettings::class], [Section::class], - [Section::class, ISection::class], + [Section::class, IIconSection::class], ]; } |