| 588 | |
| 589 | /** |
| 590 | * @ticket 38699 |
| 591 | */ |
| 592 | public function test_wpmu_create_blog_updates_correct_network_site_count() { |
| 593 | $original_count = get_blog_count( self::$different_network_id ); |
| 594 | |
| 595 | $site_id = self::factory()->blog->create( array( |
| 596 | 'domain' => 'example.org', |
| 597 | 'path' => '/', |
| 598 | 'site_id' => self::$different_network_id, |
| 599 | ) ); |
| 600 | |
| 601 | $result = get_blog_count( self::$different_network_id ); |
| 602 | |
| 603 | wpmu_delete_blog( $site_id, true ); |
| 604 | |
| 605 | $this->assertEquals( $original_count + 1, $result ); |
| 606 | } |