Changeset 11091 for trunk/tests/phpunit/testcases/groups/cache.php
- Timestamp:
- 09/13/2016 05:35:55 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/testcases/groups/cache.php
r11087 r11091 74 74 75 75 // Prime cache 76 groups_get_group( array( 'group_id' => $g, ));76 groups_get_group( $g ); 77 77 78 78 $this->assertNotEmpty( wp_cache_get( $g, 'bp_groups' ) ); … … 93 93 // Prime cache 94 94 groups_update_groupmeta( $g, 'foo', 'bar' ); 95 groups_get_group( array( 'group_id' => $g ));95 groups_get_group( $g ); 96 96 97 97 $this->assertNotEmpty( wp_cache_get( $g, 'bp_groups' ) ); … … 109 109 110 110 // Prime cache 111 groups_get_group( array( 'group_id' => $g ));111 groups_get_group( $g ); 112 112 113 113 // fake an activity … … 134 134 135 135 // Prime cache 136 groups_get_group( array( 'group_id' => $g1 ));136 groups_get_group( $g1 ); 137 137 138 138 // fake activities
Note: See TracChangeset
for help on using the changeset viewer.