Make WordPress Core


Ignore:
Timestamp:
03/04/2021 10:11:38 AM (4 years ago)
Author:
SergeyBiryukov
Message:

Docs: Update inline comments in some test files per the documentation standards.

See #52628.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/image/editorGd.php

    r50449 r50491  
    9090        $resized = $gd_image_editor->multi_resize( $sizes_array );
    9191
    92         # First, check to see if returned array is as expected
     92        // First, check to see if returned array is as expected.
    9393        $expected_array = array(
    9494            array(
     
    218218             */
    219219            array(
    220                 'width'  => 9999, # Arbitrary High Value
     220                'width'  => 9999, // Arbitrary high value.
    221221                'height' => 20,
    222222                'crop'   => false,
     
    229229            array(
    230230                'width'  => 45,
    231                 'height' => 9999, # Arbitrary High Value
     231                'height' => 9999, // Arbitrary high value.
    232232                'crop'   => true,
    233233            ),
     
    272272             */
    273273            array(
    274                 'width'  => -9999, # Arbitrary Negative Value
     274                'width'  => -9999, // Arbitrary negative value.
    275275                'height' => 70,
    276276            ),
     
    282282            array(
    283283                'width'  => 200,
    284                 'height' => -9999, # Arbitrary Negative Value
     284                'height' => -9999, // Arbitrary negative value.
    285285            ),
    286286        );
Note: See TracChangeset for help on using the changeset viewer.