From 79909fadc082189ecf39b4a0cde09b70799227fb Mon Sep 17 00:00:00 2001 From: bruno DA SILVA Date: Thu, 14 May 2020 10:49:31 +0200 Subject: [PATCH] =?UTF-8?q?N=C2=B02556=20-=20Repair=20CI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/core/HTMLDOMSanitizerTest.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/core/HTMLDOMSanitizerTest.php b/test/core/HTMLDOMSanitizerTest.php index 63eb08e06..d20656494 100644 --- a/test/core/HTMLDOMSanitizerTest.php +++ b/test/core/HTMLDOMSanitizerTest.php @@ -306,9 +306,13 @@ class HTMLDOMSanitizerTest extends ItopTestCase 'expected' => 1, ), 'nested images within forbidden tags' => array( - 'html' => '', + 'html' => '', 'expected' => 5, ), + 'nested images within forbidden and removed tags' => array( + 'html' => '', + 'expected' => 3, + ), ); }