diff --git a/core/modules/views/src/Plugin/ViewsHandlerManager.php b/core/modules/views/src/Plugin/ViewsHandlerManager.php
index e7e1c89..08671b4 100644
--- a/core/modules/views/src/Plugin/ViewsHandlerManager.php
+++ b/core/modules/views/src/Plugin/ViewsHandlerManager.php
@@ -59,6 +59,7 @@ public function __construct($handler_type, \Traversable $namespaces, ViewsData $
     parent::__construct("Plugin/views/$handler_type", $namespaces, $module_handler, $plugin_interface, $plugin_definition_annotation_name);
 
     $this->setCacheBackend($cache_backend, "views:$handler_type", array('extension' => array(TRUE, 'views')));
+    $this->alterInfo('views_handlers_' . $handler_type);
 
     $this->viewsData = $views_data;
     $this->handlerType = $handler_type;
diff --git a/core/modules/views/tests/src/Unit/ViewsHandlerManagerTest.php b/core/modules/views/tests/src/Unit/ViewsHandlerManagerTest.php
new file mode 100644
index 0000000..c1c8010
--- /dev/null
+++ b/core/modules/views/tests/src/Unit/ViewsHandlerManagerTest.php
@@ -0,0 +1,53 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\Tests\views\Unit\ViewsHandlerManagerTest.
+ */
+
+namespace Drupal\Tests\views\Unit;
+
+use Drupal\Tests\UnitTestCase;
+use Drupal\views\Plugin\ViewsHandlerManager;
+
+/**
+ * Tests the ViewsHandlerManager class.
+ *
+ * @group views
+ */
+class ViewsHandlerManagerTest extends UnitTestCase {
+
+  /**
+   * @var \Drupal\views\Plugin\ViewsHandlerManager|
+   */
+  protected $handlerManager;
+
+  /**
+   * @var \Drupal\Core\Extension\ModuleHandlerInterface|\PHPUnit_Framework_MockObject_MockObject
+   */
+  protected $moduleHandler;
+
+  /**
+   * {@inheritdoc}
+   */
+  public function setUp() {
+    $views_data = $this->getMockBuilder('Drupal\views\ViewsData')
+      ->disableOriginalConstructor()
+      ->getMock();
+    $cache_backend = $this->getMock('Drupal\Core\Cache\CacheBackendInterface');
+    $this->moduleHandler = $this->getMock('Drupal\Core\Extension\ModuleHandlerInterface');
+    $this->handlerManager = new ViewsHandlerManager('test', new \ArrayObject(array()), $views_data, $cache_backend, $this->moduleHandler);
+  }
+
+  /**
+   * Tests that hook_views_handlers_TYPE_alter() is invoked.
+   */
+  public function testAlterHookInvokation() {
+    $this->moduleHandler->expects($this->once())
+      ->method('alter')
+      ->with('views_handlers_test', array());
+
+    $this->handlerManager->getDefinitions();
+  }
+
+}
