diff --git a/lib/Controller/PageController.php b/lib/Controller/PageController.php index 0842ef14b..268b0914e 100644 --- a/lib/Controller/PageController.php +++ b/lib/Controller/PageController.php @@ -69,7 +69,7 @@ class PageController extends Controller { if ($this->defaultBoardService->checkFirstRun($this->userId, $this->appName)) { if ($this->permissionService->canCreate()) { - $this->defaultBoardService->createDefaultBoard($this->l10n->t('Personal'), $this->userId, '000000'); + $this->defaultBoardService->createDefaultBoard($this->l10n->t('Personal'), $this->userId, '0087C5'); } } diff --git a/tests/unit/Service/DefaultBoardServiceTest.php b/tests/unit/Service/DefaultBoardServiceTest.php index 59a16f342..a1761a131 100644 --- a/tests/unit/Service/DefaultBoardServiceTest.php +++ b/tests/unit/Service/DefaultBoardServiceTest.php @@ -103,7 +103,7 @@ class DefaultBoardServiceTest extends TestCase { $board = new Board(); $board->setTitle('Personal'); $board->setOwner($this->userId); - $board->setColor('000000'); + $board->setColor('317CCC'); $userBoards = [$board]; @@ -121,7 +121,7 @@ class DefaultBoardServiceTest extends TestCase { public function testCreateDefaultBoard() { $title = 'Personal'; - $color = '000000'; + $color = '317CCC'; $boardId = 5; $board = new Board(); diff --git a/tests/unit/controller/PageControllerTest.php b/tests/unit/controller/PageControllerTest.php index 8f6d1c47c..831dee61b 100644 --- a/tests/unit/controller/PageControllerTest.php +++ b/tests/unit/controller/PageControllerTest.php @@ -59,7 +59,7 @@ class PageControllerTest extends \Test\TestCase { $board = new Board(); $board->setTitle('Personal'); $board->setOwner($this->userId); - $board->setColor('000000'); + $board->setColor('317CCC'); $this->defaultBoardService->expects($this->once()) ->method('checkFirstRun') @@ -82,7 +82,7 @@ class PageControllerTest extends \Test\TestCase { $board = new Board(); $board->setTitle('Personal'); $board->setOwner($this->userId); - $board->setColor('000000'); + $board->setColor('317CCC'); $this->defaultBoardService->expects($this->once()) ->method('checkFirstRun')