diff --git a/pelican/tests/test_contents.py b/pelican/tests/test_contents.py index d028c7a1..af9b06bb 100644 --- a/pelican/tests/test_contents.py +++ b/pelican/tests/test_contents.py @@ -294,28 +294,28 @@ class TestPage(LoggedTestCase): args['content'] = ( 'A simple test, with a ' 'link' + '?utm_whatever=234&highlight=word">link' ) content = Page(**args).get_content('http://notmyidea.org') self.assertEqual( content, 'A simple test, with a ' 'link' + '?utm_whatever=234&highlight=word">link' ) # combination args['content'] = ( 'A simple test, with a ' 'link' + '?utm_whatever=234&highlight=word#section-2">link' ) content = Page(**args).get_content('http://notmyidea.org') self.assertEqual( content, 'A simple test, with a ' 'link' + '?utm_whatever=234&highlight=word#section-2">link' ) # also test for summary in metadata