Changeset 50836 for trunk/tests/phpunit/tests/blocks/register.php
- Timestamp:
- 05/11/2021 09:41:48 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/blocks/register.php
r50450 r50836 271 271 $this->assertSame( 'unit-tests-test-block-style', $result ); 272 272 $this->assertSame( 'replace', wp_styles()->get_data( 'unit-tests-test-block-style', 'rtl' ) ); 273 274 // @ticket 50328 275 $this->assertSame( 276 wp_normalize_path( realpath( DIR_TESTDATA . '/blocks/notice/block.css' ) ), 277 wp_normalize_path( wp_styles()->get_data( 'unit-tests-test-block-style', 'path' ) ) 278 ); 273 279 } 274 280 … … 367 373 $this->assertSame( 'tests-notice-editor-style', $result->editor_style ); 368 374 $this->assertSame( 'tests-notice-style', $result->style ); 375 376 // @ticket 50328 377 $this->assertSame( 378 wp_normalize_path( realpath( DIR_TESTDATA . '/blocks/notice/block.css' ) ), 379 wp_normalize_path( wp_styles()->get_data( 'unit-tests-test-block-style', 'path' ) ) 380 ); 369 381 } 370 382
Note: See TracChangeset
for help on using the changeset viewer.