]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Util/EMailerTest.php
Merge pull request #13375 from MrPetovan/bug/empty-timeline
[friendica.git] / tests / src / Util / EMailerTest.php
index ec10ee089e5e4d4222425085a54c6204dfa73e79..6432d580085f6ef38f432b7bd0bb41ce052e5104 100644 (file)
@@ -1,4 +1,23 @@
 <?php
+/**
+ * @copyright Copyright (C) 2010-2023, the Friendica project
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
 
 namespace Friendica\Test\src\Util;
 
@@ -49,8 +68,8 @@ class EMailerTest extends MockedTest
                $this->pConfig = \Mockery::mock(IManagePersonalConfigValues::class);
                $this->l10n    = \Mockery::mock(L10n::class);
                $this->baseUrl = \Mockery::mock(BaseURL::class);
-               $this->baseUrl->shouldReceive('getHostname')->andReturn('friendica.local');
-               $this->baseUrl->shouldReceive('get')->andReturn('http://friendica.local');
+               $this->baseUrl->shouldReceive('getHost')->andReturn('friendica.local');
+               $this->baseUrl->shouldReceive('__toString')->andReturn('http://friendica.local');
        }
 
        protected function tearDown(): void