Changeset 35225 for trunk/tests/phpunit/tests/post/filtering.php
- Timestamp:
- 10/16/2015 09:04:12 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/post/filtering.php
r30291 r35225 32 32 EOF; 33 33 34 $id = $this->factory->post->create( array( 'post_content' => $content ) );34 $id = self::$factory->post->create( array( 'post_content' => $content ) ); 35 35 $post = get_post($id); 36 36 … … 49 49 EOF; 50 50 51 $id = $this->factory->post->create( array( 'post_content' => $content ) );51 $id = self::$factory->post->create( array( 'post_content' => $content ) ); 52 52 $post = get_post($id); 53 53 … … 66 66 EOF; 67 67 68 $id = $this->factory->post->create( array( 'post_content' => $content ) );68 $id = self::$factory->post->create( array( 'post_content' => $content ) ); 69 69 $post = get_post($id); 70 70 … … 85 85 EOF; 86 86 87 $id = $this->factory->post->create( array( 'post_content' => $content ) );87 $id = self::$factory->post->create( array( 'post_content' => $content ) ); 88 88 $post = get_post($id); 89 89 … … 105 105 EOF; 106 106 107 $id = $this->factory->post->create( array( 'post_content' => $content ) );107 $id = self::$factory->post->create( array( 'post_content' => $content ) ); 108 108 $post = get_post($id); 109 109
Note: See TracChangeset
for help on using the changeset viewer.