Changeset 8597
- Timestamp:
- 07/11/2014 08:47:19 PM (12 years ago)
- Location:
- trunk/tests/phpunit/testcases
- Files:
-
- 3 edited
-
blogs/class-bp-blogs-blog.php (modified) (2 diffs)
-
core/avatars.php (modified) (1 diff)
-
url/url.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/testcases/blogs/class-bp-blogs-blog.php
r8594 r8597 52 52 'title' => 'The Foo Bar Blog', 53 53 'user_id' => $u, 54 'path' => __METHOD__ . time(),54 'path' => '/path' . rand() . time() . '/', 55 55 ) ); 56 56 bp_blogs_record_existing_blogs(); … … 82 82 'title' => 'Foo Bar Blog', 83 83 'user_id' => $u, 84 'path' => __METHOD__ . time(),84 'path' => '/path' . rand() . time() . '/', 85 85 ) ); 86 86 bp_blogs_record_existing_blogs(); -
trunk/tests/phpunit/testcases/core/avatars.php
r8596 r8597 71 71 'user_id' => $this->administrator, 72 72 'title' => 'Test Title', 73 'path' => '/path' . time() . '/',73 'path' => '/path' . rand() . time() . '/', 74 74 ) ); 75 75 -
trunk/tests/phpunit/testcases/url/url.php
r8596 r8597 50 50 $original_root_blog = bp_get_root_blog_id(); 51 51 $blog_id = $this->factory->blog->create( array( 52 'path' => '/path' . time() . '/',52 'path' => '/path' . rand() . time() . '/', 53 53 ) ); 54 54 buddypress()->root_blog_id = $blog_id;
Note: See TracChangeset
for help on using the changeset viewer.