Update Drupal core to 8.2.7
This commit is contained in:
parent
59b2578442
commit
6fa31ad086
22 changed files with 664 additions and 133 deletions
|
@ -1301,7 +1301,7 @@ abstract class WebTestBase extends TestBase {
|
|||
}
|
||||
|
||||
if ($path instanceof Url) {
|
||||
$path = $path->toString();
|
||||
$path = $path->setAbsolute()->toString(TRUE)->getGeneratedUrl();
|
||||
}
|
||||
|
||||
$verbose = 'GET request to: ' . $path .
|
||||
|
@ -2588,7 +2588,7 @@ abstract class WebTestBase extends TestBase {
|
|||
$url_options = $path->getOptions();
|
||||
$options = $url_options + $options;
|
||||
$path->setOptions($options);
|
||||
return $path->setAbsolute()->toString();
|
||||
return $path->setAbsolute()->toString(TRUE)->getGeneratedUrl();
|
||||
}
|
||||
// The URL generator service is not necessarily available yet; e.g., in
|
||||
// interactive installer tests.
|
||||
|
|
Reference in a new issue