diff --git a/typo3/sysext/linkvalidator/Tests/Functional/Fixtures/expected_output_content_with_broken_link_external.csv b/typo3/sysext/linkvalidator/Tests/Functional/Fixtures/expected_output_content_with_broken_link_external.csv
index c89d17876129c67ab9de78f49af6b1e357d50c42..fc66b52cf51a6231316c645f1dd1534709c2409a 100644
--- a/typo3/sysext/linkvalidator/Tests/Functional/Fixtures/expected_output_content_with_broken_link_external.csv
+++ b/typo3/sysext/linkvalidator/Tests/Functional/Fixtures/expected_output_content_with_broken_link_external.csv
@@ -1,3 +1,3 @@
 "tx_linkvalidator_link",,,,,,,
 ,"record_uid","record_pid","field","table_name","link_title","url","link_type"
-,1,1,"bodytext","tt_content","link","https://sfsfsfsfdfsfsdfsf/sfdsfsds","external"
+,1,1,"bodytext","tt_content","link","http://localhost/iAmInvalid","external"
diff --git a/typo3/sysext/linkvalidator/Tests/Functional/Fixtures/expected_output_content_with_broken_links_several.csv b/typo3/sysext/linkvalidator/Tests/Functional/Fixtures/expected_output_content_with_broken_links_several.csv
index 732349c3f20a520613a63d53b12082a313ea829f..0a459efa8c20caf9be306f6ff9f016a9afd7081b 100644
--- a/typo3/sysext/linkvalidator/Tests/Functional/Fixtures/expected_output_content_with_broken_links_several.csv
+++ b/typo3/sysext/linkvalidator/Tests/Functional/Fixtures/expected_output_content_with_broken_links_several.csv
@@ -1,7 +1,7 @@
 "tx_linkvalidator_link",,,,,,,
 ,"record_uid","record_pid","field","table_name","link_title","url","link_type"
-,1,1,"bodytext","tt_content","link","https://sfsfsfsfdfsfsdfsf/sfdsfsds","external"
-,2,1,"bodytext","tt_content","link","https://sfsfsfsfdfsfsdfsf/sfdsfsds","external"
+,1,1,"bodytext","tt_content","link","http://localhost/iAmInvalid","external"
+,2,1,"bodytext","tt_content","link","http://localhost/iAmInvalid","external"
 ,3,1,"bodytext","tt_content","broken link",85,"db"
 ,4,1,"bodytext","tt_content","broken link",8555555,"db"
 ,5,1,"bodytext","tt_content","broken link","file:88","file"
diff --git a/typo3/sysext/linkvalidator/Tests/Functional/Fixtures/expected_output_content_with_broken_links_several_pages.csv b/typo3/sysext/linkvalidator/Tests/Functional/Fixtures/expected_output_content_with_broken_links_several_pages.csv
index 33476099719d04287c66fe0b20119d62cd9708ab..5bfb07f8a46d7db2ade512edd7be92d83809ffc6 100644
--- a/typo3/sysext/linkvalidator/Tests/Functional/Fixtures/expected_output_content_with_broken_links_several_pages.csv
+++ b/typo3/sysext/linkvalidator/Tests/Functional/Fixtures/expected_output_content_with_broken_links_several_pages.csv
@@ -1,7 +1,7 @@
 "tx_linkvalidator_link",,,,,,,
 ,"record_uid","record_pid","field","table_name","link_title","url","link_type"
-,1,1,"bodytext","tt_content","link","https://sfsfsfsfdfsfsdfsf/sfdsfsds","external"
-,2,2,"bodytext","tt_content","link","https://sfsfsfsfdfsfsdfsf/sfdsfsds","external"
+,1,1,"bodytext","tt_content","link","http://localhost/iAmInvalid","external"
+,2,2,"bodytext","tt_content","link","http://localhost/iAmInvalid","external"
 ,3,1,"bodytext","tt_content","broken link",85,"db"
 ,4,2,"bodytext","tt_content","broken link",8555555,"db"
 ,5,1,"bodytext","tt_content","broken link","file:88","file"
diff --git a/typo3/sysext/linkvalidator/Tests/Functional/Fixtures/expected_output_with_broken_link_external_in_canonical_link.csv b/typo3/sysext/linkvalidator/Tests/Functional/Fixtures/expected_output_with_broken_link_external_in_canonical_link.csv
index 667e8f760d734362a2fa375a077b65da0aa4a992..ffe86f3363cf88f4827dc67e35b5d5ddc4a96ad3 100644
--- a/typo3/sysext/linkvalidator/Tests/Functional/Fixtures/expected_output_with_broken_link_external_in_canonical_link.csv
+++ b/typo3/sysext/linkvalidator/Tests/Functional/Fixtures/expected_output_with_broken_link_external_in_canonical_link.csv
@@ -1,3 +1,3 @@
 "tx_linkvalidator_link",,,,,,,
 ,"record_uid","record_pid","field","table_name","link_title","url","link_type"
-,1,0,"canonical_link","pages",,"https://sfsfsfsfdfsfsdfsf/sfdsfsds","external"
+,1,0,"canonical_link","pages",,"http://localhost/iAmInvalid","external"
diff --git a/typo3/sysext/linkvalidator/Tests/Functional/Fixtures/input_content_with_broken_link_external.xml b/typo3/sysext/linkvalidator/Tests/Functional/Fixtures/input_content_with_broken_link_external.xml
index 3b498c93e4eb1a36084d4140ca2d13fa3447a377..fc80045a0315c29341dc39dee9cef74a93e80bcc 100644
--- a/typo3/sysext/linkvalidator/Tests/Functional/Fixtures/input_content_with_broken_link_external.xml
+++ b/typo3/sysext/linkvalidator/Tests/Functional/Fixtures/input_content_with_broken_link_external.xml
@@ -7,7 +7,7 @@
     <tt_content>
         <uid>1</uid>
         <pid>1</pid>
-        <bodytext>&lt;p&gt;&lt;a href=&quot;https://sfsfsfsfdfsfsdfsf/sfdsfsds&quot;&gt;link&lt;/a&gt;&lt;/p&gt;</bodytext>
+        <bodytext>&lt;p&gt;&lt;a href=&quot;http://localhost/iAmInvalid&quot;&gt;link&lt;/a&gt;&lt;/p&gt;</bodytext>
         <CType>textmedia</CType>
     </tt_content>
 </dataset>
diff --git a/typo3/sysext/linkvalidator/Tests/Functional/Fixtures/input_content_with_broken_links_several.xml b/typo3/sysext/linkvalidator/Tests/Functional/Fixtures/input_content_with_broken_links_several.xml
index 8eedba1fba999b4c62df8d39349ddd43cf9be2f2..7a8b6fcd15d22536f19c5bbb0eabf3a1e0ed368d 100644
--- a/typo3/sysext/linkvalidator/Tests/Functional/Fixtures/input_content_with_broken_links_several.xml
+++ b/typo3/sysext/linkvalidator/Tests/Functional/Fixtures/input_content_with_broken_links_several.xml
@@ -8,13 +8,13 @@
     <tt_content>
         <uid>1</uid>
         <pid>1</pid>
-        <bodytext>&lt;p&gt;&lt;a href=&quot;https://sfsfsfsfdfsfsdfsf/sfdsfsds&quot;&gt;link&lt;/a&gt;&lt;/p&gt;</bodytext>
+        <bodytext>&lt;p&gt;&lt;a href=&quot;http://localhost/iAmInvalid&quot;&gt;link&lt;/a&gt;&lt;/p&gt;</bodytext>
         <CType>textmedia</CType>
     </tt_content>
     <tt_content>
         <uid>2</uid>
         <pid>1</pid>
-        <bodytext>&lt;p&gt;&lt;a href=&quot;https://sfsfsfsfdfsfsdfsf/sfdsfsds&quot;&gt;link&lt;/a&gt;&lt;/p&gt;</bodytext>
+        <bodytext>&lt;p&gt;&lt;a href=&quot;http://localhost/iAmInvalid&quot;&gt;link&lt;/a&gt;&lt;/p&gt;</bodytext>
         <CType>textmedia</CType>
     </tt_content>
 
diff --git a/typo3/sysext/linkvalidator/Tests/Functional/Fixtures/input_content_with_broken_links_several_pages.xml b/typo3/sysext/linkvalidator/Tests/Functional/Fixtures/input_content_with_broken_links_several_pages.xml
index 46293eccedfc72845e509ea196ef457d305e8048..b4ee5005f11929dae45ca70e01f71e6802171925 100644
--- a/typo3/sysext/linkvalidator/Tests/Functional/Fixtures/input_content_with_broken_links_several_pages.xml
+++ b/typo3/sysext/linkvalidator/Tests/Functional/Fixtures/input_content_with_broken_links_several_pages.xml
@@ -12,13 +12,13 @@
     <tt_content>
         <uid>1</uid>
         <pid>1</pid>
-        <bodytext>&lt;p&gt;&lt;a href=&quot;https://sfsfsfsfdfsfsdfsf/sfdsfsds&quot;&gt;link&lt;/a&gt;&lt;/p&gt;</bodytext>
+        <bodytext>&lt;p&gt;&lt;a href=&quot;http://localhost/iAmInvalid&quot;&gt;link&lt;/a&gt;&lt;/p&gt;</bodytext>
         <CType>textmedia</CType>
     </tt_content>
     <tt_content>
         <uid>2</uid>
         <pid>2</pid>
-        <bodytext>&lt;p&gt;&lt;a href=&quot;https://sfsfsfsfdfsfsdfsf/sfdsfsds&quot;&gt;link&lt;/a&gt;&lt;/p&gt;</bodytext>
+        <bodytext>&lt;p&gt;&lt;a href=&quot;http://localhost/iAmInvalid&quot;&gt;link&lt;/a&gt;&lt;/p&gt;</bodytext>
         <CType>textmedia</CType>
     </tt_content>
 
diff --git a/typo3/sysext/linkvalidator/Tests/Functional/Fixtures/input_page_with_broken_link_external_in_canonical_link.xml b/typo3/sysext/linkvalidator/Tests/Functional/Fixtures/input_page_with_broken_link_external_in_canonical_link.xml
index 7b36856da1a47376359227db6d3e6d93d0106b6b..f3a8f696d8a231b9596b51ef2b80669a61ce777e 100644
--- a/typo3/sysext/linkvalidator/Tests/Functional/Fixtures/input_page_with_broken_link_external_in_canonical_link.xml
+++ b/typo3/sysext/linkvalidator/Tests/Functional/Fixtures/input_page_with_broken_link_external_in_canonical_link.xml
@@ -3,6 +3,6 @@
     <pages>
         <uid>1</uid>
         <pid>0</pid>
-        <canonical_link>https://sfsfsfsfdfsfsdfsf/sfdsfsds</canonical_link>
+        <canonical_link>http://localhost/iAmInvalid</canonical_link>
     </pages>
 </dataset>
diff --git a/typo3/sysext/linkvalidator/Tests/Functional/Repository/BrokenLinkRepositoryTest.php b/typo3/sysext/linkvalidator/Tests/Functional/Repository/BrokenLinkRepositoryTest.php
index 2b21bbd1c6c6270b78300f3a56980192a284984a..6f620b5bc4099da1881da8af18df613e94e85d3c 100644
--- a/typo3/sysext/linkvalidator/Tests/Functional/Repository/BrokenLinkRepositoryTest.php
+++ b/typo3/sysext/linkvalidator/Tests/Functional/Repository/BrokenLinkRepositoryTest.php
@@ -376,7 +376,7 @@ class BrokenLinkRepositoryTest extends FunctionalTestCase
                    'table_name' => 'tt_content',
                    'element_type' => 'textmedia',
                    'link_title' => 'link',
-                   'url' => 'https://sfsfsfsfdfsfsdfsf/sfdsfsds',
+                   'url' => 'http://localhost/iAmInvalid',
                    'link_type' => 'external',
                    'needs_recheck' => 0,
                 ],
@@ -389,7 +389,7 @@ class BrokenLinkRepositoryTest extends FunctionalTestCase
                     'table_name' => 'tt_content',
                     'element_type' => 'textmedia',
                     'link_title' => null,
-                    'url' => 'https://sfsfsfsfdfsfsdfsf/sfdsfsds',
+                    'url' => 'http://localhost/iAmInvalid',
                     'link_type' => 'external',
                     'needs_recheck' => 0,
                 ],
@@ -463,7 +463,7 @@ class BrokenLinkRepositoryTest extends FunctionalTestCase
                     'table_name' => 'tt_content',
                     'element_type' => 'textmedia',
                     'link_title' => 'link',
-                    'url' => 'https://sfsfsfsfdfsfsdfsf/sfdsfsds',
+                    'url' => 'http://localhost/iAmInvalid',
                     'link_type' => 'external',
                     'needs_recheck' => 0,
                 ],
@@ -514,7 +514,7 @@ class BrokenLinkRepositoryTest extends FunctionalTestCase
                     'table_name' => 'tt_content',
                     'element_type' => 'textmedia',
                     'link_title' => 'link',
-                    'url' => 'https://sfsfsfsfdfsfsdfsf/sfdsfsds',
+                    'url' => 'http://localhost/iAmInvalid',
                     'link_type' => 'external',
                     'needs_recheck' => 0,
                 ],
@@ -527,7 +527,7 @@ class BrokenLinkRepositoryTest extends FunctionalTestCase
                     'table_name' => 'tt_content',
                     'element_type' => 'textmedia',
                     'link_title' => null,
-                    'url' => 'https://sfsfsfsfdfsfsdfsf/sfdsfsds',
+                    'url' => 'http://localhost/iAmInvalid',
                     'link_type' => 'external',
                     'needs_recheck' => 0,
                 ],
@@ -578,7 +578,7 @@ class BrokenLinkRepositoryTest extends FunctionalTestCase
                     'table_name' => 'tt_content',
                     'element_type' => 'textmedia',
                     'link_title' => 'link',
-                    'url' => 'https://sfsfsfsfdfsfsdfsf/sfdsfsds',
+                    'url' => 'http://localhost/iAmInvalid',
                     'link_type' => 'external',
                     'needs_recheck' => 0,
                 ],
@@ -604,7 +604,7 @@ class BrokenLinkRepositoryTest extends FunctionalTestCase
                     'table_name' => 'tt_content',
                     'element_type' => 'textmedia',
                     'link_title' => 'link',
-                    'url' => 'https://sfsfsfsfdfsfsdfsf/sfdsfsds',
+                    'url' => 'http://localhost/iAmInvalid',
                     'link_type' => 'external',
                     'needs_recheck' => 0,
                 ],
@@ -682,7 +682,7 @@ class BrokenLinkRepositoryTest extends FunctionalTestCase
                     'table_name' => 'tt_content',
                     'element_type' => 'textmedia',
                     'link_title' => 'link',
-                    'url' => 'https://sfsfsfsfdfsfsdfsf/sfdsfsds',
+                    'url' => 'http://localhost/iAmInvalid',
                     'link_type' => 'external',
                 ],
                 [
@@ -694,7 +694,7 @@ class BrokenLinkRepositoryTest extends FunctionalTestCase
                     'table_name' => 'tt_content',
                     'element_type' => 'textmedia',
                     'link_title' => 'link',
-                    'url' => 'https://sfsfsfsfdfsfsdfsf/sfdsfsds',
+                    'url' => 'http://localhost/iAmInvalid',
                     'link_type' => 'external',
                 ],
                 [
@@ -706,7 +706,7 @@ class BrokenLinkRepositoryTest extends FunctionalTestCase
                     'table_name' => 'tt_content',
                     'element_type' => 'textmedia',
                     'link_title' => 'link',
-                    'url' => 'https://sfsfsfsfdfsfsdfsf/sfdsfsds',
+                    'url' => 'http://localhost/iAmInvalid',
                     'link_type' => 'external',
                 ],
             ],
@@ -733,7 +733,7 @@ class BrokenLinkRepositoryTest extends FunctionalTestCase
                     'table_name' => 'tt_content',
                     'element_type' => 'textmedia',
                     'link_title' => 'link',
-                    'url' => 'https://sfsfsfsfdfsfsdfsf/sfdsfsds',
+                    'url' => 'http://localhost/iAmInvalid',
                     'link_type' => 'external',
                 ],
                 [
@@ -745,7 +745,7 @@ class BrokenLinkRepositoryTest extends FunctionalTestCase
                     'table_name' => 'tt_content',
                     'element_type' => 'textmedia',
                     'link_title' => 'link',
-                    'url' => 'https://sfsfsfsfdfsfsdfsf/sfdsfsds',
+                    'url' => 'http://localhost/iAmInvalid',
                     'link_type' => 'external',
                 ],
             ],
diff --git a/typo3/sysext/linkvalidator/Tests/Functional/Repository/Fixtures/input.xml b/typo3/sysext/linkvalidator/Tests/Functional/Repository/Fixtures/input.xml
index 7dd9c7e3dc44c8e96b7ebe7e71c15239f3586a16..fa5954898e91d942102c3e013abd145b8d9ea4f2 100644
--- a/typo3/sysext/linkvalidator/Tests/Functional/Repository/Fixtures/input.xml
+++ b/typo3/sysext/linkvalidator/Tests/Functional/Repository/Fixtures/input.xml
@@ -8,13 +8,13 @@
     <tt_content>
         <uid>1</uid>
         <pid>1</pid>
-        <bodytext>&lt;p&gt;&lt;a href=&quot;https://sfsfsfsfdfsfsdfsf/sfdsfsds&quot;&gt;link&lt;/a&gt;&lt;/p&gt;</bodytext>
+        <bodytext>&lt;p&gt;&lt;a href=&quot;http://localhost/iAmInvalid&quot;&gt;link&lt;/a&gt;&lt;/p&gt;</bodytext>
         <CType>textmedia</CType>
     </tt_content>
     <tt_content>
         <uid>2</uid>
         <pid>1</pid>
-        <header_link>https://sfsfsfsfdfsfsdfsf/sfdsfsds</header_link>
+        <header_link>http://localhost/iAmInvalid</header_link>
         <CType>textmedia</CType>
     </tt_content>
 
diff --git a/typo3/sysext/linkvalidator/Tests/Functional/Repository/Fixtures/input_languages.xml b/typo3/sysext/linkvalidator/Tests/Functional/Repository/Fixtures/input_languages.xml
index 391139643668bf4a5f18043146cbd6a2aea751a1..2b6739bfe6d99b17bc05adb4ab26f60d1d742b65 100644
--- a/typo3/sysext/linkvalidator/Tests/Functional/Repository/Fixtures/input_languages.xml
+++ b/typo3/sysext/linkvalidator/Tests/Functional/Repository/Fixtures/input_languages.xml
@@ -22,7 +22,7 @@
     <tt_content>
         <uid>1</uid>
         <pid>1</pid>
-        <bodytext>&lt;p&gt;&lt;a href=&quot;https://sfsfsfsfdfsfsdfsf/sfdsfsds&quot;&gt;link&lt;/a&gt;&lt;/p&gt;</bodytext>
+        <bodytext>&lt;p&gt;&lt;a href=&quot;http://localhost/iAmInvalid&quot;&gt;link&lt;/a&gt;&lt;/p&gt;</bodytext>
         <CType>textmedia</CType>
         <l18n_parent>0</l18n_parent>
         <sys_language_uid>0</sys_language_uid>
@@ -30,7 +30,7 @@
     <tt_content>
         <uid>2</uid>
         <pid>1</pid>
-        <bodytext>&lt;p&gt;&lt;a href=&quot;https://sfsfsfsfdfsfsdfsf/sfdsfsds&quot;&gt;link&lt;/a&gt;&lt;/p&gt;</bodytext>
+        <bodytext>&lt;p&gt;&lt;a href=&quot;http://localhost/iAmInvalid&quot;&gt;link&lt;/a&gt;&lt;/p&gt;</bodytext>
         <CType>textmedia</CType>
         <l18n_parent>1</l18n_parent>
         <sys_language_uid>1</sys_language_uid>
@@ -38,7 +38,7 @@
     <tt_content>
         <uid>3</uid>
         <pid>1</pid>
-        <bodytext>&lt;p&gt;&lt;a href=&quot;https://sfsfsfsfdfsfsdfsf/sfdsfsds&quot;&gt;link&lt;/a&gt;&lt;/p&gt;</bodytext>
+        <bodytext>&lt;p&gt;&lt;a href=&quot;http://localhost/iAmInvalid&quot;&gt;link&lt;/a&gt;&lt;/p&gt;</bodytext>
         <CType>textmedia</CType>
         <l18n_parent>1</l18n_parent>
         <sys_language_uid>2</sys_language_uid>
diff --git a/typo3/sysext/linkvalidator/Tests/Functional/Repository/Fixtures/input_permissions_group.xml b/typo3/sysext/linkvalidator/Tests/Functional/Repository/Fixtures/input_permissions_group.xml
index d29a39db86a33d0246c9121efc7d131954dd58f4..12ab3bf057b062fe39d57a0b2fd510cf685fa9e9 100644
--- a/typo3/sysext/linkvalidator/Tests/Functional/Repository/Fixtures/input_permissions_group.xml
+++ b/typo3/sysext/linkvalidator/Tests/Functional/Repository/Fixtures/input_permissions_group.xml
@@ -12,7 +12,7 @@
     <tt_content>
         <uid>1</uid>
         <pid>1</pid>
-        <bodytext>&lt;p&gt;&lt;a href=&quot;https://sfsfsfsfdfsfsdfsf/sfdsfsds&quot;&gt;link&lt;/a&gt;&lt;/p&gt;</bodytext>
+        <bodytext>&lt;p&gt;&lt;a href=&quot;http://localhost/iAmInvalid&quot;&gt;link&lt;/a&gt;&lt;/p&gt;</bodytext>
         <CType>textmedia</CType>
     </tt_content>
 
diff --git a/typo3/sysext/linkvalidator/Tests/Functional/Repository/Fixtures/input_permissions_user_2.xml b/typo3/sysext/linkvalidator/Tests/Functional/Repository/Fixtures/input_permissions_user_2.xml
index c45d3aad817260c047cfc4dd7647e79ec40c542b..75747f08f56e227bb0219c0e2341659cfd2f054d 100644
--- a/typo3/sysext/linkvalidator/Tests/Functional/Repository/Fixtures/input_permissions_user_2.xml
+++ b/typo3/sysext/linkvalidator/Tests/Functional/Repository/Fixtures/input_permissions_user_2.xml
@@ -12,7 +12,7 @@
     <tt_content>
         <uid>1</uid>
         <pid>1</pid>
-        <bodytext>&lt;p&gt;&lt;a href=&quot;https://sfsfsfsfdfsfsdfsf/sfdsfsds&quot;&gt;link&lt;/a&gt;&lt;/p&gt;</bodytext>
+        <bodytext>&lt;p&gt;&lt;a href=&quot;http://localhost/iAmInvalid&quot;&gt;link&lt;/a&gt;&lt;/p&gt;</bodytext>
         <CType>textmedia</CType>
     </tt_content>
 
diff --git a/typo3/sysext/linkvalidator/Tests/Functional/Repository/Fixtures/input_permissions_user_3.xml b/typo3/sysext/linkvalidator/Tests/Functional/Repository/Fixtures/input_permissions_user_3.xml
index b9eb96931d2daf6da96ad726ece6ff1dfeb70ffe..8c3fbecc7906a3e34c975efb77be4cfc67ce7c06 100644
--- a/typo3/sysext/linkvalidator/Tests/Functional/Repository/Fixtures/input_permissions_user_3.xml
+++ b/typo3/sysext/linkvalidator/Tests/Functional/Repository/Fixtures/input_permissions_user_3.xml
@@ -12,13 +12,13 @@
     <tt_content>
         <uid>1</uid>
         <pid>1</pid>
-        <bodytext>&lt;p&gt;&lt;a href=&quot;https://sfsfsfsfdfsfsdfsf/sfdsfsds&quot;&gt;link&lt;/a&gt;&lt;/p&gt;</bodytext>
+        <bodytext>&lt;p&gt;&lt;a href=&quot;http://localhost/iAmInvalid&quot;&gt;link&lt;/a&gt;&lt;/p&gt;</bodytext>
         <CType>textmedia</CType>
     </tt_content>
     <tt_content>
         <uid>2</uid>
         <pid>1</pid>
-        <header_link>https://sfsfsfsfdfsfsdfsf/sfdsfsds</header_link>
+        <header_link>http://localhost/iAmInvalid</header_link>
         <CType>textmedia</CType>
     </tt_content>
 
diff --git a/typo3/sysext/linkvalidator/Tests/Functional/Repository/Fixtures/input_permissions_user_4.xml b/typo3/sysext/linkvalidator/Tests/Functional/Repository/Fixtures/input_permissions_user_4.xml
index 9aebe00c563694f63c1502f6a3982ee654562e83..689474a8dc33e8e741c9ce23f4c131d0dad9e341 100644
--- a/typo3/sysext/linkvalidator/Tests/Functional/Repository/Fixtures/input_permissions_user_4.xml
+++ b/typo3/sysext/linkvalidator/Tests/Functional/Repository/Fixtures/input_permissions_user_4.xml
@@ -12,13 +12,13 @@
     <tt_content>
         <uid>1</uid>
         <pid>1</pid>
-        <bodytext>&lt;p&gt;&lt;a href=&quot;https://sfsfsfsfdfsfsdfsf/sfdsfsds&quot;&gt;link&lt;/a&gt;&lt;/p&gt;</bodytext>
+        <bodytext>&lt;p&gt;&lt;a href=&quot;http://localhost/iAmInvalid&quot;&gt;link&lt;/a&gt;&lt;/p&gt;</bodytext>
         <CType>textmedia</CType>
     </tt_content>
     <tt_content>
         <uid>2</uid>
         <pid>1</pid>
-        <header_link>https://sfsfsfsfdfsfsdfsf/sfdsfsds</header_link>
+        <header_link>http://localhost/iAmInvalid</header_link>
         <CType>textmedia</CType>
     </tt_content>
 
diff --git a/typo3/sysext/linkvalidator/Tests/Functional/Repository/Fixtures/input_permissions_user_5.xml b/typo3/sysext/linkvalidator/Tests/Functional/Repository/Fixtures/input_permissions_user_5.xml
index e69790676137425fd54f0f92b636f6114bf87abe..9e1f8ee852a0b341c7fe0258900783c036548f6c 100644
--- a/typo3/sysext/linkvalidator/Tests/Functional/Repository/Fixtures/input_permissions_user_5.xml
+++ b/typo3/sysext/linkvalidator/Tests/Functional/Repository/Fixtures/input_permissions_user_5.xml
@@ -12,7 +12,7 @@
     <tt_content>
         <uid>1</uid>
         <pid>1</pid>
-        <bodytext>&lt;p&gt;&lt;a href=&quot;https://sfsfsfsfdfsfsdfsf/sfdsfsds&quot;&gt;link&lt;/a&gt;&lt;/p&gt;</bodytext>
+        <bodytext>&lt;p&gt;&lt;a href=&quot;http://localhost/iAmInvalid&quot;&gt;link&lt;/a&gt;&lt;/p&gt;</bodytext>
         <CType>textmedia</CType>
         <sys_language_uid>0</sys_language_uid>
     </tt_content>
@@ -21,7 +21,7 @@
     <tt_content>
         <uid>2</uid>
         <pid>1</pid>
-        <header_link>https://sfsfsfsfdfsfsdfsf/sfdsfsds</header_link>
+        <header_link>http://localhost/iAmInvalid</header_link>
         <CType>textmedia</CType>
         <sys_language_uid>1</sys_language_uid>
     </tt_content>
diff --git a/typo3/sysext/linkvalidator/Tests/Functional/Repository/Fixtures/input_permissions_user_6_explicit_allow.xml b/typo3/sysext/linkvalidator/Tests/Functional/Repository/Fixtures/input_permissions_user_6_explicit_allow.xml
index 7624e10cdb3cb55618a1e137a4ebebc5980328c9..8c7229f0d5404bef14210857b64666e930e8716d 100644
--- a/typo3/sysext/linkvalidator/Tests/Functional/Repository/Fixtures/input_permissions_user_6_explicit_allow.xml
+++ b/typo3/sysext/linkvalidator/Tests/Functional/Repository/Fixtures/input_permissions_user_6_explicit_allow.xml
@@ -12,7 +12,7 @@
     <tt_content>
         <uid>1</uid>
         <pid>1</pid>
-        <bodytext>&lt;p&gt;&lt;a href=&quot;https://sfsfsfsfdfsfsdfsf/sfdsfsds&quot;&gt;link&lt;/a&gt;&lt;/p&gt;</bodytext>
+        <bodytext>&lt;p&gt;&lt;a href=&quot;http://localhost/iAmInvalid&quot;&gt;link&lt;/a&gt;&lt;/p&gt;</bodytext>
         <CType>textmedia</CType>
     </tt_content>
 
@@ -20,7 +20,7 @@
     <tt_content>
         <uid>2</uid>
         <pid>1</pid>
-        <bodytext>&lt;p&gt;&lt;a href=&quot;https://sfsfsfsfdfsfsdfsf/sfdsfsds&quot;&gt;link&lt;/a&gt;&lt;/p&gt;</bodytext>
+        <bodytext>&lt;p&gt;&lt;a href=&quot;http://localhost/iAmInvalid&quot;&gt;link&lt;/a&gt;&lt;/p&gt;</bodytext>
         <CType>textpic</CType>
     </tt_content>
 </dataset>