core/modules/simpletest/lib/Drupal/simpletest/WebTestBase.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/modules/simpletest/lib/Drupal/simpletest/WebTestBase.php b/core/modules/simpletest/lib/Drupal/simpletest/WebTestBase.php index c9837d6..ef1d74a 100644 --- a/core/modules/simpletest/lib/Drupal/simpletest/WebTestBase.php +++ b/core/modules/simpletest/lib/Drupal/simpletest/WebTestBase.php @@ -1671,7 +1671,7 @@ protected function drupalPostAJAX($path, $edit, $triggering_element, $ajax_path * @see WebTestBase::curlExec() * @see url() */ - public function drupalPostCustom($path, $accept, array $post, $options = array()) { + protected function drupalPostCustom($path, $accept, array $post, $options = array()) { return $this->curlExec(array( CURLOPT_URL => url($path, $options + array('absolute' => TRUE)), CURLOPT_POST => TRUE, @@ -1689,7 +1689,7 @@ public function drupalPostCustom($path, $accept, array $post, $options = array() * @return array * The Ajax page state POST data. */ - public function getAjaxPageStatePostData() { + protected function getAjaxPageStatePostData() { $post = array(); $drupal_settings = $this->drupalSettings; if (isset($drupal_settings['ajaxPageState'])) {