Make WordPress Core

Changeset 58164


Ignore:
Timestamp:
05/17/2024 01:11:27 PM (11 months ago)
Author:
SergeyBiryukov
Message:

Tests: Remove trailing characters from @ticket annotations.

Follow-up to [44693], [46209], [54230], [54733], [55151].

Props jonsurrell.
See #61238.

Location:
trunk/tests/phpunit/tests
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/cron.php

    r58109 r58164  
    599599     * When a timestamp is specified, a particular event should be returned.
    600600     *
    601      * @ticket 45976.
     601     * @ticket 45976
    602602     *
    603603     * @covers ::wp_get_scheduled_event
     
    644644     * When a timestamp is specified, a particular event should be returned.
    645645     *
    646      * @ticket 45976.
     646     * @ticket 45976
    647647     *
    648648     * @covers ::wp_get_scheduled_event
     
    690690     * Ensure wp_get_scheduled_event() returns false when expected.
    691691     *
    692      * @ticket 45976.
     692     * @ticket 45976
    693693     *
    694694     * @covers ::wp_get_scheduled_event
  • trunk/tests/phpunit/tests/db.php

    r57987 r58164  
    16861686
    16871687            /*
    1688              * @ticket 56933.
     1688             * @ticket 56933
    16891689             * When preparing a '%%%s%%', test that the inserted value
    16901690             * is not wrapped in single quotes between the 2 "%".
     
    18391839
    18401840            /*
    1841              * @ticket 52506.
     1841             * @ticket 52506
    18421842             * Adding an escape method for Identifiers (e.g. table/field names).
    18431843             */
  • trunk/tests/phpunit/tests/formatting/date.php

    r55562 r58164  
    241241                'gmt_offset'      => 3,
    242242            ),
    243             // @ticket 56468.
     243            // @ticket 56468
    244244            'deprecated timezone string and no GMT offset set' => array(
    245245                'timezone_string' => 'America/Buenos_Aires',
  • trunk/tests/phpunit/tests/privacy/wpPrivacyGeneratePersonalDataExportGroupHtml.php

    r55337 r58164  
    4545     *
    4646     * @ticket 44044
    47      * @ticket 46895 Updated to remove </h2> from test to avoid Count introducing failure.
     47     * @ticket 46895
    4848     */
    4949    public function test_group_html_generation_multiple_data_items() {
     
    7676        $actual = wp_privacy_generate_personal_data_export_group_html( $data, 'test-data-group', 2 );
    7777
     78        // Updated to remove </h2> from test to avoid Count introducing failure (ticket #46895).
    7879        $this->assertStringContainsString( '<h2 id="test-data-group-test-data-group">Test Data Group', $actual );
    7980        $this->assertStringContainsString( '<td>Field 1 Value', $actual );
Note: See TracChangeset for help on using the changeset viewer.