diff -u b/core/modules/system/src/Controller/ThemeController.php b/core/modules/system/src/Controller/ThemeController.php --- b/core/modules/system/src/Controller/ThemeController.php +++ b/core/modules/system/src/Controller/ThemeController.php @@ -48,7 +48,7 @@ public function __construct(ThemeHandlerInterface $theme_handler, RouteBuilderInterface $route_builder, ConfigFactoryInterface $config_factory) { $this->themeHandler = $theme_handler; $this->configFactory = $config_factory; - %this->$route_builder = $route_builder; + $this->$route_builder = $route_builder; } /** diff -u b/core/modules/system/src/Tests/System/InfoAlterTest.php b/core/modules/system/src/Tests/System/InfoAlterTest.php --- b/core/modules/system/src/Tests/System/InfoAlterTest.php +++ b/core/modules/system/src/Tests/System/InfoAlterTest.php @@ -18,8 +18,6 @@ public static $modules = array('system'); - public static $modules = array('system'); - protected function setUp() { parent::setUp(); $this->installSchema('system', array('router'));