diff --git a/core/scripts/run-tests.sh b/core/scripts/run-tests.sh index d9728a02e9955f56f546f2a48350897e38019741..cf7c75045aaa9b92aa4aacdf2840e163c45e30fc 100755 --- a/core/scripts/run-tests.sh +++ b/core/scripts/run-tests.sh @@ -67,7 +67,7 @@ echo "\nAvailable test groups & classes\n"; echo "-------------------------------\n\n"; $test_discovery = new TestDiscovery( - \Drupal::service('app.root'), + \Drupal::root(), \Drupal::service('class_loader') ); try { @@ -100,7 +100,7 @@ if ($args['list-files'] || $args['list-files-json']) { // List all files which could be run as tests. $test_discovery = new TestDiscovery( - \Drupal::service('app.root'), + \Drupal::root(), \Drupal::service('class_loader') ); // TestDiscovery::findAllClassFiles() gives us a classmap similar to a @@ -1024,7 +1024,7 @@ function simpletest_script_get_test_list() { global $args; $test_discovery = new TestDiscovery( - \Drupal::service('app.root'), + \Drupal::root(), \Drupal::service('class_loader') ); $types_processed = empty($args['types']);