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 5604b84..bc12ae2 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
@@ -630,7 +630,7 @@ protected function instantiate_view($form, &$form_state) {
     $view = entity_create('view', $values);
 
     // Build all display options for this view.
-    $display_options = $this->build_display_options($form, $form_state);
+    $display_options = $this->buildDisplayOptions($form, $form_state);
 
     // Allow the fully built options to be altered. This happens before adding
     // the options to the view, so that once they are eventually added we will
@@ -649,7 +649,7 @@ protected function instantiate_view($form, &$form_state) {
    *   An array whose keys are the names of each display and whose values are
    *   arrays of options for that display.
    */
-  protected function build_display_options($form, $form_state) {
+  protected function buildDisplayOptions($form, $form_state) {
     // Display: Master
     $display_options['default'] = $this->defaultDisplayOptions();
     $display_options['default'] += array(
