Make WordPress Core


Ignore:
Timestamp:
10/21/2016 05:27:56 AM (8 years ago)
Author:
pento
Message:

Tests: Prevent Twenty Seventeen from interfering with Customizer tests.

This was previously fixed in [38837], but it wasn't really the correct answer, to fix it in the theme. So, [38837] is reverted in this commit, and the Twenty Seventeen actions causing problems are unhooked before tests are run.

See #38372.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/customize/nav-menus.php

    r38436 r38850  
    2727        $this->wp_customize = new WP_Customize_Manager();
    2828        $wp_customize = $this->wp_customize;
     29
     30        // Remove default theme actions that interfere with tests
     31        remove_action( 'customize_register', 'twentyseventeen_customize_register' );
    2932    }
    3033
Note: See TracChangeset for help on using the changeset viewer.