mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-16 14:50:29 +00:00
Tests: Use more appropriate assertions in various tests.
This replaces instances of `assertTrue( isset( ... ) )` with `assertArrayHasKey()` to use native PHPUnit functionality. Follow-up to [51335], [51337], [51367]. See #53363. git-svn-id: https://develop.svn.wordpress.org/trunk@51397 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -134,7 +134,7 @@ class Tests_Widgets extends WP_UnitTestCase {
|
||||
|
||||
register_sidebars( 1, array( 'id' => 'wp-unit-test' ) );
|
||||
|
||||
$this->assertTrue( isset( $wp_registered_sidebars['wp-unit-test'] ) );
|
||||
$this->assertArrayHasKey( 'wp-unit-test', $wp_registered_sidebars );
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user