Issue #2757139 by pfrenssen: Fix visibility of AssertLegacyTrait::buildXPathQuery()

8.2.x
Nathaniel Catchpole 2016-06-28 14:34:05 +01:00
parent 4520b25003
commit ea6a8c33f7
1 changed files with 1 additions and 1 deletions

View File

@ -420,7 +420,7 @@ trait AssertLegacyTrait {
* @deprecated Scheduled for removal in Drupal 9.0.0.
* Use $this->assertSession()->buildXPathQuery() instead.
*/
public function buildXPathQuery($xpath, array $args = array()) {
protected function buildXPathQuery($xpath, array $args = array()) {
return $this->assertSession()->buildXPathQuery($xpath, $args);
}