Make WordPress Core


Ignore:
Timestamp:
06/24/2022 03:02:18 PM (4 years ago)
Author:
SergeyBiryukov
Message:

Tests: Use more consistent wording when referring to PHP deprecation notices.

Previously committed in [53492], appears to be accidentally reverted in [53564].

Follow-up to [51619], [51695], [53492], [53563].

See #55652.

File:
1 edited

Legend:

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

    r53564 r53573  
    118118    /**
    119119     * Tests that a call to wp_schedule_event() on a site without any scheduled events
    120      * does not result in a PHP deprecation warning on PHP 8.1 or higher.
    121      *
    122      * The warning that we should not see:
     120     * does not result in a PHP deprecation notice on PHP 8.1 or higher.
     121     *
     122     * The notice that we should not see:
    123123     * `Deprecated: Automatic conversion of false to array is deprecated`.
    124124     *
     
    127127     * @covers ::wp_schedule_event
    128128     */
    129     public function test_wp_schedule_event_without_cron_option_does_not_throw_warning() {
     129    public function test_wp_schedule_event_without_cron_option_does_not_throw_deprecation_notice() {
    130130        delete_option( 'cron' );
    131131
Note: See TracChangeset for help on using the changeset viewer.