diff --git a/tests/phpunit/tests/html-api/wpHtmlProcessorBreadcrumbs.php b/tests/phpunit/tests/html-api/wpHtmlProcessorBreadcrumbs.php
index d89ee3038cbd9..ea099b0364e9d 100644
--- a/tests/phpunit/tests/html-api/wpHtmlProcessorBreadcrumbs.php
+++ b/tests/phpunit/tests/html-api/wpHtmlProcessorBreadcrumbs.php
@@ -13,7 +13,7 @@
*/
class Tests_HtmlApi_wpHtmlProcessorBreadcrumbs extends WP_UnitTestCase {
/**
- * @ticket {TICKET_NO}
+ * @ticket 58517
*
* @covers WP_HTML_Processor::step
*
@@ -74,7 +74,7 @@ public function data_single_tag_of_supported_elements() {
* to ensure that support isn't accidentally updated in one place for a new
* element while overlooked in another.
*
- * @ticket {TICKET_NO}
+ * @ticket 58517
*
* @covers WP_HTML_Processor::step
*
@@ -229,7 +229,7 @@ public function data_unsupported_elements() {
}
/**
- * @ticket {TICKET_NO}
+ * @ticket 58517
*
* @dataProvider data_unsupported_markup
*
@@ -266,7 +266,7 @@ public function data_unsupported_markup() {
}
/**
- * @ticket {TICKET_NO}
+ * @ticket 58517
*
* @covers WP_HTML_Processor::next_tag
*
@@ -291,7 +291,7 @@ public function test_finds_correct_tag_given_breadcrumbs( $html, $breadcrumbs, $
}
/**
- * @ticket {TICKET_NO}
+ * @ticket 58517
*
* @covers WP_HTML_Processor::get_breadcrumbs
*
diff --git a/tests/phpunit/tests/html-api/wpHtmlSupportRequiredOpenElements.php b/tests/phpunit/tests/html-api/wpHtmlSupportRequiredOpenElements.php
index 4756c8f11fa82..a1deedee8ec60 100644
--- a/tests/phpunit/tests/html-api/wpHtmlSupportRequiredOpenElements.php
+++ b/tests/phpunit/tests/html-api/wpHtmlSupportRequiredOpenElements.php
@@ -20,7 +20,7 @@ private function ensure_support_is_added_everywhere( $tag_name ) {
}
/**
- * @ticket {TICKET_NO}
+ * @ticket 58517
*
* The check for whether an element is in a scope depends on
* looking for a number of terminating elements in the stack of open
@@ -37,7 +37,7 @@ public function test_has_element_in_scope_needs_support( $tag_name ) {
}
/**
- * @ticket {TICKET_NO}
+ * @ticket 58517
*
* The check for whether an element is in list item scope depends on
* the elements for any scope, plus UL and OL.
@@ -48,7 +48,7 @@ public function test_has_element_in_list_item_scope_needs_support() {
}
/**
- * @ticket {TICKET_NO}
+ * @ticket 58517
*
* The check for whether an element is in BUTTON scope depends on
* the elements for any scope, plus BUTTON.
@@ -58,7 +58,7 @@ public function test_has_element_in_button_scope_needs_support() {
}
/**
- * @ticket {TICKET_NO}
+ * @ticket 58517
*
* The check for whether an element is in TABLE scope depends on
* the HTML, TABLE, and TEMPLATE elements.
@@ -70,7 +70,7 @@ public function test_has_element_in_table_scope_needs_support() {
}
/**
- * @ticket {TICKET_NO}
+ * @ticket 58517
*
* The check for whether an element is in SELECT scope depends on
* the OPTGROUP and OPTION elements..