diff --git a/lib/Drupal/views/Tests/WizardJumpMenuTest.php b/lib/Drupal/views/Tests/WizardJumpMenuTest.php
index 2e1a3e553436bd91e2005021c39e98e2da26468a..8de2f3b46d76c83b38ad225a5557310641e9fbf3 100644
--- a/lib/Drupal/views/Tests/WizardJumpMenuTest.php
+++ b/lib/Drupal/views/Tests/WizardJumpMenuTest.php
@@ -30,7 +30,7 @@ function testJumpMenus() {
       'node' => 'createNodeAndGetPath',
       'users' => 'createUserAndGetPath',
       'comment' => 'createCommentAndGetPath',
-      'taxonomy_term_data' => 'createTaxonomyTermAndGetPath',
+      'taxonomy_term' => 'createTaxonomyTermAndGetPath',
       'file_managed' => 'createFileAndGetPath',
       'node_revision' => 'createNodeRevisionAndGetPath',
     );
diff --git a/views.module b/views.module
index 9a645ea6149a7f3b48d3bf6d1d0c9e7faa38b75d..96cfbdb9ef9e3b8e57066ec8d56f781ff7e8768e 100644
--- a/views.module
+++ b/views.module
@@ -27,7 +27,7 @@ function views_api_version() {
  *
  */
 function views_init() {
-  $core_modules = array('aggregator', 'book', 'comment', 'contact', 'field', 'filter', 'locale', 'node', 'search', 'statistics', 'system', 'taxonomy', 'translation', 'user');
+  $core_modules = array('aggregator', 'book', 'comment', 'contact', 'field', 'filter', 'file', 'locale', 'node', 'search', 'statistics', 'system', 'taxonomy', 'translation', 'user');
   $path = drupal_get_path('module', 'views');
   $loader = drupal_classloader();
   foreach ($core_modules as $module) {