Make WordPress Core

Changeset 36547


Ignore:
Timestamp:
02/17/2016 03:36:20 PM (8 years ago)
Author:
ocean90
Message:

Tests: Indent test_wp_register_style() with tabs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/dependencies/styles.php

    r32483 r36547  
    230230    }
    231231
    232     /**
    233     * Testing 'wp_register_style' return boolean success/failure value.
    234     *
    235     * @ticket 31126
    236     */
    237     function test_wp_register_style(){
    238         $this->assertTrue( wp_register_style( 'duplicate-handler', 'http://example.com' ) );
    239         $this->assertFalse( wp_register_style( 'duplicate-handler', 'http://example.com' ) );
    240     }
     232    /**
     233    * Testing 'wp_register_style' return boolean success/failure value.
     234    *
     235    * @ticket 31126
     236    */
     237    function test_wp_register_style(){
     238        $this->assertTrue( wp_register_style( 'duplicate-handler', 'http://example.com' ) );
     239        $this->assertFalse( wp_register_style( 'duplicate-handler', 'http://example.com' ) );
     240    }
    241241
    242242}
Note: See TracChangeset for help on using the changeset viewer.