diff options
Diffstat (limited to 'engine/tests/regression')
-rw-r--r-- | engine/tests/regression/trac_bugs.php | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/engine/tests/regression/trac_bugs.php b/engine/tests/regression/trac_bugs.php index b791dcad3..cb3f20421 100644 --- a/engine/tests/regression/trac_bugs.php +++ b/engine/tests/regression/trac_bugs.php @@ -282,19 +282,12 @@ class ElggCoreRegressionBugsTest extends ElggCoreUnitTest { 'ssl <a href="https://example.org/" rel="nofollow">https:/<wbr />/<wbr />example.org/<wbr /></a> test', 'ftp ftp://example.org/ test' => 'ftp <a href="ftp://example.org/" rel="nofollow">ftp:/<wbr />/<wbr />example.org/<wbr /></a> test', + '<a href="http://web.archive.org/web/20000229040250/http://www.google.com/">google</a>' => + '<a href="http://web.archive.org/web/20000229040250/http://www.google.com/">google</a>' ); foreach ($cases as $input => $output) { $this->assertEqual($output, parse_urls($input)); } } - - /** - * Test #2057 -- parse_urls() - * https://github.com/Elgg/Elgg/issues/2057 - */ - public function test_archive_url() { - $input = '<a href="http://web.archive.org/web/20000229040250/http://www.google.com/">google</a>'; - $this->assertEqual($input, parse_urls($input)); - } } |