- Timestamp:
- 11/03/2017 07:44:10 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/testcases/activity/functions/bpActivityGetCommentDepth.php
r11413 r11737 10 10 */ 11 11 public function test_depth_inside_activity_comment_loop() { 12 $u = $this->factory->user->create();12 $u = self::factory()->user->create(); 13 13 14 14 // create an activity update 15 $parent_activity = $this->factory->activity->create( array(15 $parent_activity = self::factory()->activity->create( array( 16 16 'type' => 'activity_update', 17 17 'user_id' => $u … … 77 77 */ 78 78 public function test_depth_outside_of_activity_comment_loop() { 79 $u = $this->factory->user->create();79 $u = self::factory()->user->create(); 80 80 81 81 // create an activity update 82 $parent_activity = $this->factory->activity->create( array(82 $parent_activity = self::factory()->activity->create( array( 83 83 'type' => 'activity_update', 84 84 'user_id' => $u
Note: See TracChangeset
for help on using the changeset viewer.