diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/wizard/Node.php b/core/modules/node/lib/Drupal/node/Plugin/views/wizard/Node.php
index 644fbcf..4d378d4 100644
--- a/core/modules/node/lib/Drupal/node/Plugin/views/wizard/Node.php
+++ b/core/modules/node/lib/Drupal/node/Plugin/views/wizard/Node.php
@@ -242,12 +242,12 @@ protected  function display_options_row(&$display_options, $row_plugin, $row_opt
   }
 
   /**
-   * Overrides Drupal\views\Plugin\views\wizard\WizardPluginBase::build_filters().
+   * Overrides Drupal\views\Plugin\views\wizard\WizardPluginBase::buildFilters().
    *
    * Add some options for filter by taxonomy terms.
    */
-  protected function build_filters(&$form, &$form_state) {
-    parent::build_filters($form, $form_state);
+  protected function buildFilters(&$form, &$form_state) {
+    parent::buildFilters($form, $form_state);
 
     $selected_bundle = static::getSelected($form_state, array('show', 'type'), 'all', $form['displays']['show']['type']);
 
diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/wizard/WizardPluginBase.php b/core/modules/views/lib/Drupal/views/Plugin/views/wizard/WizardPluginBase.php
index 3945ae0..ef493a2 100644
--- a/core/modules/views/lib/Drupal/views/Plugin/views/wizard/WizardPluginBase.php
+++ b/core/modules/views/lib/Drupal/views/Plugin/views/wizard/WizardPluginBase.php
@@ -206,7 +206,7 @@ function build_form(array $form, array &$form_state) {
     $path_prefix = url(NULL, array('absolute' => TRUE));
 
     // Add filters and sorts which apply to the view as a whole.
-    $this->build_filters($form, $form_state);
+    $this->buildFilters($form, $form_state);
     $this->build_sorts($form, $form_state);
 
     $form['displays']['page'] = array(
@@ -554,7 +554,7 @@ protected function row_style_options() {
    * By default, this adds "of type" and "tagged with" filters (when they are
    * available).
    */
-  protected function build_filters(&$form, &$form_state) {
+  protected function buildFilters(&$form, &$form_state) {
     module_load_include('inc', 'views_ui', 'admin');
 
     $bundles = entity_get_bundles($this->entity_type);
