1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-01 17:38:38 +00:00
This commit is contained in:
Jeremy Benoist 2017-05-29 10:14:01 +02:00
parent f0378b4d7c
commit 38a04dee34
No known key found for this signature in database
GPG key ID: BCA73962457ACC3C

View file

@ -226,7 +226,7 @@ class ContentProxyTest extends \PHPUnit_Framework_TestCase
'authors' => ['Jeremy', 'Nico', 'Thomas'], 'authors' => ['Jeremy', 'Nico', 'Thomas'],
'all_headers' => [ 'all_headers' => [
'Cache-Control' => 'no-cache', 'Cache-Control' => 'no-cache',
] ],
] ]
); );
@ -342,11 +342,11 @@ class ContentProxyTest extends \PHPUnit_Framework_TestCase
return [ return [
'script and comment' => [ 'script and comment' => [
'<strong>Script inside:</strong> <!--[if gte IE 4]><script>alert(\'lol\');</script><![endif]--><br />', '<strong>Script inside:</strong> <!--[if gte IE 4]><script>alert(\'lol\');</script><![endif]--><br />',
'lol' 'lol',
], ],
'script' => [ 'script' => [
'<strong>Script inside:</strong><script>alert(\'lol\');</script>', '<strong>Script inside:</strong><script>alert(\'lol\');</script>',
'script' 'script',
], ],
]; ];
} }