diff --git a/core/modules/help_topics/tests/modules/help_topics_test/help_topics/help_topics_test.test.html.twig b/core/modules/help_topics/tests/modules/help_topics_test/help_topics/help_topics_test.test.html.twig
index 2e76aa0cb3..eaf23b14d2 100644
--- a/core/modules/help_topics/tests/modules/help_topics_test/help_topics/help_topics_test.test.html.twig
+++ b/core/modules/help_topics/tests/modules/help_topics_test/help_topics/help_topics_test.test.html.twig
@@ -1,6 +1,6 @@
 <meta name="help_topic:label" content="ABC Help Test module"/>
 <meta name="help_topic:top_level"/>
 <meta name="help_topic:related" content="help_topics_test.linked,does_not_exist.and_no_error"/>
-{% set help_topic_url = render_var(url('help_topics.help_topic', {id: 'help_topics.help_topic_writing'})) %}
-<p>{% trans %}This is a test. It should <a href="{{ help_topic_url }}">link to the writing good help topic</a>. Also there should be a related topic link below to the Help module topic page and the linked topic.{% endtrans %}</p>
+{% set help_topic_url = render_var(url('help_topics.help_topic', {id: 'help_topics_test.additional'})) %}
+<p>{% trans %}This is a test. It should <a href="{{ help_topic_url }}">link to the additional topic</a>. Also there should be a related topic link below to the Help module topic page and the linked topic.{% endtrans %}</p>
 <p>{% trans %}Test translation.{% endtrans %}</p>
diff --git a/core/modules/help_topics/tests/src/Functional/HelpTopicTest.php b/core/modules/help_topics/tests/src/Functional/HelpTopicTest.php
index 37b2be9a1a..a532de2e9d 100644
--- a/core/modules/help_topics/tests/src/Functional/HelpTopicTest.php
+++ b/core/modules/help_topics/tests/src/Functional/HelpTopicTest.php
@@ -177,7 +177,7 @@ protected function verifyHelpLinks() {
     // Verify links on the test top-level page.
     $page = 'admin/help/topic/help_topics_test.test';
     $links = [
-      'link to the writing good help topic' => 'Writing good help',
+      'link to the additional topic' => 'Additional topic',
       'Linked topic' => 'This topic is not supposed to be top-level',
       'Additional topic' => 'This topic should get listed automatically',
     ];
@@ -225,9 +225,6 @@ protected function getTopicList() {
       'help_topics_test_direct_yml' => [
         'name' => 'Test direct yaml topic label',
       ],
-      'help_topics.help_topic_writing' => [
-        'name' => 'Writing good help',
-      ],
     ];
   }
 
