Skip to content
Prev Previous commit
Next Next commit
Fix ticket annotation
  • Loading branch information
swissspidy committed May 24, 2024
commit 08fd1280765994c15d90e56f26f4ca8f1c0d67c0
8 changes: 4 additions & 4 deletions tests/phpunit/tests/fonts/font-library/postTypes.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,21 @@
*/
class Tests_Fonts_Post_Types extends WP_UnitTestCase {
/**
* @ticket 59043
* @ticket 41172
*/
public function test_wp_font_family_does_not_support_autosaves() {
$this->assertFalse( post_type_supports( 'wp_font_family', 'autosave' ) );
}

/**
* @ticket 59043
* @ticket 41172
*/
public function test_wp_font_face_does_not_support_autosaves() {
$this->assertFalse( post_type_supports( 'wp_font_face', 'autosave' ) );
}

/**
* @ticket 59043
* @ticket 41172
*/
public function test_wp_font_family_does_not_have_an_autosave_controller() {
$post_type_object = get_post_type_object( 'wp_font_family' );
Expand All @@ -34,7 +34,7 @@ public function test_wp_font_family_does_not_have_an_autosave_controller() {
}

/**
* @ticket 59043
* @ticket 41172
*/
public function test_wp_font_face_does_not_have_an_autosave_controller() {
$post_type_object = get_post_type_object( 'wp_font_face' );
Expand Down