aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/Module/HelpTest.php
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2025-05-18 18:42:45 +0000
committerMario <mario@mariovavti.com>2025-05-18 18:42:45 +0000
commit456a741809d1045fc2bd9f20238c44d73899eb92 (patch)
tree893bff4aa615cdbe8567aa2a3bff2e5706739d03 /tests/unit/Module/HelpTest.php
parentc31b3b6b678ad03ee19ee1f289705d6afb7e1d19 (diff)
downloadvolse-hubzilla-456a741809d1045fc2bd9f20238c44d73899eb92.tar.gz
volse-hubzilla-456a741809d1045fc2bd9f20238c44d73899eb92.tar.bz2
volse-hubzilla-456a741809d1045fc2bd9f20238c44d73899eb92.zip
Replace english docs with pepecyb's docs
Diffstat (limited to 'tests/unit/Module/HelpTest.php')
-rw-r--r--tests/unit/Module/HelpTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/Module/HelpTest.php b/tests/unit/Module/HelpTest.php
index 1feef26a8..e1aea1a06 100644
--- a/tests/unit/Module/HelpTest.php
+++ b/tests/unit/Module/HelpTest.php
@@ -76,13 +76,13 @@ class HelpTest extends \Zotlabs\Tests\Unit\Module\TestCase {
public function test_get_request_without_args_redirects_to_about_page(): void {
$this->stub_goaway();
$this->expectException(\Zotlabs\Tests\Unit\Module\RedirectException::class);
- $this->expectExceptionMessage('about/about');
+ $this->expectExceptionMessage('about');
$this->get('help');
}
public function test_getting_locale_with_no_topic_should_redirect_to_about_page(): void {
- $this->expectRedirectTo('help/about/about');
+ $this->expectRedirectTo('help/about');
$this->get('help/de');
}