- Timestamp:
- 09/04/2020 07:01:00 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/customize/custom-css-setting.php
r48937 r48939 346 346 function filter_update_custom_css_data( $data, $args ) { 347 347 $this->assertInternalType( 'array', $data ); 348 $this->assert EqualSets( array( 'css', 'preprocessed' ), array_keys( $data ) );348 $this->assertSameSets( array( 'css', 'preprocessed' ), array_keys( $data ) ); 349 349 $this->assertSame( '', $data['preprocessed'] ); 350 350 $this->assertInternalType( 'array', $args ); 351 $this->assert EqualSets( array( 'css', 'preprocessed', 'stylesheet' ), array_keys( $args ) );351 $this->assertSameSets( array( 'css', 'preprocessed', 'stylesheet' ), array_keys( $args ) ); 352 352 $this->assertSame( $args['css'], $data['css'] ); 353 353 $this->assertSame( $args['preprocessed'], $data['preprocessed'] );
Note: See TracChangeset
for help on using the changeset viewer.