mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-30 23:30:05 +00:00
Fix db_version juggling during non-multisite tests.
Continuing with the "code is poetry" theme after [34719], we need to continue to update the option in the database on non-multisite in this `wp_insert_term()` test. See #31130. git-svn-id: https://develop.svn.wordpress.org/trunk@34720 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -469,8 +469,14 @@ class Tests_Term_WpInsertTerm extends WP_UnitTestCase {
|
||||
*/
|
||||
public function test_wp_insert_term_duplicate_slug_different_taxonomy_before_410_schema_change() {
|
||||
|
||||
$_db_version = $this->db_version;
|
||||
$this->db_version = 30055;
|
||||
// See #31130.
|
||||
$old_db_version = 30055;
|
||||
if ( is_multisite() ) {
|
||||
$_db_version = $this->db_version;
|
||||
$this->db_version = $old_db_version;
|
||||
} else {
|
||||
update_option( 'db_version', $old_db_version );
|
||||
}
|
||||
|
||||
register_taxonomy( 'wptests_tax', 'post' );
|
||||
register_taxonomy( 'wptests_tax_2', 'post' );
|
||||
@@ -497,7 +503,10 @@ class Tests_Term_WpInsertTerm extends WP_UnitTestCase {
|
||||
$this->assertSame( 'foo-2', $new_term->slug );
|
||||
$this->assertNotEquals( $new_term->term_id, $term->term_id );
|
||||
|
||||
$this->db_version = $_db_version;
|
||||
if ( is_multisite() ) {
|
||||
$this->db_version = $_db_version;
|
||||
}
|
||||
|
||||
_unregister_taxonomy( 'wptests_tax', 'post' );
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user