Make WordPress Core


Ignore:
Timestamp:
03/04/2021 10:11:38 AM (3 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/editorImagick.php

    r50449 r50491  
    8484        $resized = $imagick_image_editor->multi_resize( $sizes_array );
    8585
    86         # First, check to see if returned array is as expected
     86        // First, check to see if returned array is as expected.
    8787        $expected_array = array(
    8888            array(
     
    212212             */
    213213            array(
    214                 'width'  => 9999, # Arbitrary High Value
     214                'width'  => 9999, // Arbitrary high value.
    215215                'height' => 20,
    216216                'crop'   => false,
     
    223223            array(
    224224                'width'  => 45,
    225                 'height' => 9999, # Arbitrary High Value
     225                'height' => 9999, // Arbitrary high value.
    226226                'crop'   => true,
    227227            ),
     
    266266             */
    267267            array(
    268                 'width'  => -9999, # Arbitrary Negative Value
     268                'width'  => -9999, // Arbitrary negative value.
    269269                'height' => 70,
    270270            ),
     
    276276            array(
    277277                'width'  => 200,
    278                 'height' => -9999, # Arbitrary Negative Value
     278                'height' => -9999, // Arbitrary negative value.
    279279            ),
    280280        );
Note: See TracChangeset for help on using the changeset viewer.