diff --git a/core/modules/system/src/Tests/Update/UpdatePathNewDependencyTest.php b/core/modules/system/src/Tests/Update/UpdatePathNewDependencyTest.php index fd61cf42c2..8b765da1cd 100644 --- a/core/modules/system/src/Tests/Update/UpdatePathNewDependencyTest.php +++ b/core/modules/system/src/Tests/Update/UpdatePathNewDependencyTest.php @@ -38,7 +38,7 @@ public function testUpdateNewDependency() { // Rebuild the container and test that the new service works. $this->rebuildContainer(); $this->rebuildAll(); - $this->drupalGet('/'); + $this->drupalGet(''); $this->assertEqual('Hello', \Drupal::service('new_dependency_test.dependent')->hello()); } diff --git a/core/modules/system/tests/modules/new_dependency_test/new_dependency_test.install b/core/modules/system/tests/modules/new_dependency_test/new_dependency_test.install index 84a77a915e..507449cef0 100644 --- a/core/modules/system/tests/modules/new_dependency_test/new_dependency_test.install +++ b/core/modules/system/tests/modules/new_dependency_test/new_dependency_test.install @@ -1,6 +1,10 @@ service->hello(); } + }