mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-04-28 16:34:25 +00:00
Tests: Use the factory method instead of the property.
This replaces all references to the `WP_UnitTestCase_Base::$factory` property with static function calls to the `WP_UnitTestCase_Base::factory()` method. This is a consistency improvement for the test suite. Follow up to [35225], [35242], [49603], [54087], [54088]. Props jrf. See #55652. git-svn-id: https://develop.svn.wordpress.org/trunk@54090 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -978,13 +978,13 @@ class Tests_Query_Conditionals extends WP_UnitTestCase {
|
||||
public function test_is_single_with_slug_that_clashes_with_attachment() {
|
||||
$this->set_permalink_structure( '/%postname%/' );
|
||||
|
||||
$attachment_id = $this->factory->post->create(
|
||||
$attachment_id = self::factory()->post->create(
|
||||
array(
|
||||
'post_type' => 'attachment',
|
||||
)
|
||||
);
|
||||
|
||||
$post_id = $this->factory->post->create(
|
||||
$post_id = self::factory()->post->create(
|
||||
array(
|
||||
'post_title' => get_post( $attachment_id )->post_title,
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user