diff options
author | Scott Taylor <wonderboymusic@git.wordpress.org> | 2015-10-17 18:02:16 +0000 |
---|---|---|
committer | Scott Taylor <wonderboymusic@git.wordpress.org> | 2015-10-17 18:02:16 +0000 |
commit | b757b37551f7f34de972a9ba5c27f25e9d87ee62 (patch) | |
tree | 7a03bc02da00efd126e9600d55b1edb56499a9c4 /tests/phpunit/includes/testcase-canonical.php | |
parent | 5a0fd03f95345837908a249725f928510c1d0b93 (diff) | |
download | wordpress-b757b37551f7f34de972a9ba5c27f25e9d87ee62.tar.gz wordpress-b757b37551f7f34de972a9ba5c27f25e9d87ee62.zip |
Unit Tests: after [35225], make `factory` a method/getter on `WP_UnitTestCase` and add magic methods for BC for every plugin that is extending `WP_UnitTestCase` and accessing the `$factory` instance prop.
Props nerrad, wonderboymusic.
See #30017, #33968.
git-svn-id: https://develop.svn.wordpress.org/trunk@35242 602fd350-edb4-49c9-b593-d223f7449a82
Diffstat (limited to 'tests/phpunit/includes/testcase-canonical.php')
-rw-r--r-- | tests/phpunit/includes/testcase-canonical.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/phpunit/includes/testcase-canonical.php b/tests/phpunit/includes/testcase-canonical.php index 6470a64d3b..a82c8c5e0d 100644 --- a/tests/phpunit/includes/testcase-canonical.php +++ b/tests/phpunit/includes/testcase-canonical.php @@ -49,7 +49,7 @@ class WP_Canonical_UnitTestCase extends WP_UnitTestCase { wp_set_current_user( self::$author_id ); // Already created by install defaults: - // self::$factory->term->create( array( 'taxonomy' => 'category', 'name' => 'uncategorized' ) ); + // self::factory()->term->create( array( 'taxonomy' => 'category', 'name' => 'uncategorized' ) ); self::$post_ids[] = $factory->post->create( array( 'import_id' => 587, 'post_title' => 'post-format-test-audio', 'post_date' => '2008-06-02 00:00:00' ) ); self::$post_ids[] = $post_id = $factory->post->create( array( 'post_title' => 'post-format-test-gallery', 'post_date' => '2008-06-10 00:00:00' ) ); |