diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2024-05-27 06:17:05 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-05-27 06:17:05 +0000 |
commit | cad82d12d2aad1a54fa821061dd3dc1ffc732c5a (patch) | |
tree | fcc58ecd7ad3c9f9768c168d5a15f557545a52ad /tests/unit/Module/HelpTest.php | |
parent | a10402a7883efd4886ad17c8133c10237f443181 (diff) | |
download | volse-hubzilla-cad82d12d2aad1a54fa821061dd3dc1ffc732c5a.tar.gz volse-hubzilla-cad82d12d2aad1a54fa821061dd3dc1ffc732c5a.tar.bz2 volse-hubzilla-cad82d12d2aad1a54fa821061dd3dc1ffc732c5a.zip |
Upgrade test framework to PHPUnit 10.5
Diffstat (limited to 'tests/unit/Module/HelpTest.php')
-rw-r--r-- | tests/unit/Module/HelpTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/Module/HelpTest.php b/tests/unit/Module/HelpTest.php index 3fb7687d3..c345d5e52 100644 --- a/tests/unit/Module/HelpTest.php +++ b/tests/unit/Module/HelpTest.php @@ -52,7 +52,7 @@ class HelpTest extends \Zotlabs\Tests\Unit\Module\TestCase { $fgc_stub = $this->getFunctionMock('Zotlabs\Module', 'file_get_contents'); $fgc_stub ->expects($this->once()) - ->willReturn($this->returnValueMap($file_content_map)); + ->willReturnMap($file_content_map); $this->get("help/about/help_topic"); |