mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-07-04 01:00:04 +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:
@@ -73,7 +73,7 @@ class Tests_Query_NoFoundRows extends WP_UnitTestCase {
|
||||
* @ticket 29552
|
||||
*/
|
||||
public function test_no_found_rows_default_with_nopaging_true() {
|
||||
$p = $this->factory->post->create();
|
||||
$p = self::factory()->post->create();
|
||||
|
||||
$q = new WP_Query(
|
||||
array(
|
||||
@@ -90,7 +90,7 @@ class Tests_Query_NoFoundRows extends WP_UnitTestCase {
|
||||
* @ticket 29552
|
||||
*/
|
||||
public function test_no_found_rows_default_with_postsperpage_minus1() {
|
||||
$p = $this->factory->post->create();
|
||||
$p = self::factory()->post->create();
|
||||
|
||||
$q = new WP_Query(
|
||||
array(
|
||||
|
||||
Reference in New Issue
Block a user