Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / filter / tests / src / Unit / FilterHtmlTest.php
index 664c2a3001af991f8e45174e0e8c907b9ad56718..f8285ec5aed9f637d7f260cf30ae82a3713b84e3 100644 (file)
@@ -66,11 +66,11 @@ class FilterHtmlTest extends UnitTestCase {
       ['<code class="invalid alpaca">foreach ($a as $b) {}</code>', '<code>foreach ($a as $b) {}</code>'],
       ['<h3 class="big">a heading</h3>', '<h3>a heading</h3>'],
       ['<h3 id="first">a heading</h3>', '<h3 id="first">a heading</h3>'],
-      // Wilcard value. Case matters, so upper case doesn't match.
+      // Wildcard value. Case matters, so upper case doesn't match.
       ['<code class="align-left bold">foreach ($a as $b) {}</code>', '<code class="align-left">foreach ($a as $b) {}</code>'],
       ['<code class="align-right ">foreach ($a as $b) {}</code>', '<code class="align-right">foreach ($a as $b) {}</code>'],
       ['<code class="Align-right ">foreach ($a as $b) {}</code>', '<code>foreach ($a as $b) {}</code>'],
-      // Wilcard name, case is ignored.
+      // Wildcard name, case is ignored.
       ['<ol style="display: none;" llama-wim="noble majestic"></ol>', '<ol llama-wim="noble majestic"></ol>'],
       ['<ol style="display: none;" LlamA-Wim="majestic"></ol>', '<ol llama-wim="majestic"></ol>'],
       ['<ol style="display: none;" llama-="noble majestic"></ol>', '<ol llama-="noble majestic"></ol>'],