diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2022-04-27 19:39:36 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2022-04-28 08:41:58 +0200 |
commit | 4a646789c37eda99d431de84a2c4c5fed6c46152 (patch) | |
tree | f3cca2ce60d5fb4901947dcd848374c20883d0c0 /apps/theming/tests/Themes/DefaultThemeTest.php | |
parent | 971e224ce47636e828ee9d2d8003d067bc3da0da (diff) | |
download | nextcloud-server-4a646789c37eda99d431de84a2c4c5fed6c46152.tar.gz nextcloud-server-4a646789c37eda99d431de84a2c4c5fed6c46152.zip |
Add system/light themes
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/theming/tests/Themes/DefaultThemeTest.php')
-rw-r--r-- | apps/theming/tests/Themes/DefaultThemeTest.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/theming/tests/Themes/DefaultThemeTest.php b/apps/theming/tests/Themes/DefaultThemeTest.php index b9302bb4c95..160efdba142 100644 --- a/apps/theming/tests/Themes/DefaultThemeTest.php +++ b/apps/theming/tests/Themes/DefaultThemeTest.php @@ -97,15 +97,15 @@ class DefaultThemeTest extends TestCase { } public function testGetTitle() { - $this->assertEquals('Light theme', $this->defaultTheme->getTitle()); + $this->assertEquals('System default theme', $this->defaultTheme->getTitle()); } public function testGetEnableLabel() { - $this->assertEquals('Enable the default light theme', $this->defaultTheme->getEnableLabel()); + $this->assertEquals('Enable the system default', $this->defaultTheme->getEnableLabel()); } public function testGetDescription() { - $this->assertEquals('The default light appearance.', $this->defaultTheme->getDescription()); + $this->assertEquals('Using the default system appearance.', $this->defaultTheme->getDescription()); } public function testGetMediaQuery() { |