summaryrefslogtreecommitdiffstats
path: root/apps/theming/tests/ThemingDefaultsTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/theming/tests/ThemingDefaultsTest.php')
-rw-r--r--apps/theming/tests/ThemingDefaultsTest.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/theming/tests/ThemingDefaultsTest.php b/apps/theming/tests/ThemingDefaultsTest.php
index cd3a90e760a..72ccaa57d77 100644
--- a/apps/theming/tests/ThemingDefaultsTest.php
+++ b/apps/theming/tests/ThemingDefaultsTest.php
@@ -73,7 +73,7 @@ class ThemingDefaultsTest extends TestCase {
->willReturn('Safe Data');
$this->defaults
->expects($this->at(3))
- ->method('getMailHeaderColor')
+ ->method('getColorPrimary')
->willReturn('#000');
$this->template = new ThemingDefaults(
$this->config,
@@ -232,24 +232,24 @@ class ThemingDefaultsTest extends TestCase {
$this->assertEquals('<a href="url" target="_blank" rel="noreferrer">Name</a>', $this->template->getShortFooter());
}
- public function testGetMailHeaderColorWithDefault() {
+ public function testgetColorPrimaryWithDefault() {
$this->config
->expects($this->once())
->method('getAppValue')
->with('theming', 'color', '#000')
->willReturn('#000');
- $this->assertEquals('#000', $this->template->getMailHeaderColor());
+ $this->assertEquals('#000', $this->template->getColorPrimary());
}
- public function testGetMailHeaderColorWithCustom() {
+ public function testgetColorPrimaryWithCustom() {
$this->config
->expects($this->once())
->method('getAppValue')
->with('theming', 'color', '#000')
->willReturn('#fff');
- $this->assertEquals('#fff', $this->template->getMailHeaderColor());
+ $this->assertEquals('#fff', $this->template->getColorPrimary());
}
public function testSet() {