summaryrefslogtreecommitdiff
path: root/modules/simpletest/drupal_web_test_case.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-12-20 18:24:41 +0000
committerDries Buytaert <dries@buytaert.net>2008-12-20 18:24:41 +0000
commit0c63d9e24fcaef1f3cb09823d5765e7fb48bc89e (patch)
tree17978ad881e137708ceed1f29b170360df014155 /modules/simpletest/drupal_web_test_case.php
parentee700371aca60269b9c752d1e143cae64d18a745 (diff)
downloadbrdo-0c63d9e24fcaef1f3cb09823d5765e7fb48bc89e.tar.gz
brdo-0c63d9e24fcaef1f3cb09823d5765e7fb48bc89e.tar.bz2
- Patch #349504 by keith.smith: clean up sentence spacing in code comments.
Diffstat (limited to 'modules/simpletest/drupal_web_test_case.php')
-rw-r--r--modules/simpletest/drupal_web_test_case.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/simpletest/drupal_web_test_case.php b/modules/simpletest/drupal_web_test_case.php
index 60382b6bf..0185c632c 100644
--- a/modules/simpletest/drupal_web_test_case.php
+++ b/modules/simpletest/drupal_web_test_case.php
@@ -806,7 +806,7 @@ class DrupalWebTestCase {
drupal_install_modules($modules);
// Because the schema is static cached, we need to flush
- // it between each run. If we don't, then it will contain
+ // it between each run. If we don't, then it will contain
// stale data for the previous run's database prefix and all
// calls to it will fail.
drupal_get_schema(NULL, TRUE);
@@ -1033,8 +1033,8 @@ class DrupalWebTestCase {
protected function drupalGet($path, array $options = array(), array $headers = array()) {
$options['absolute'] = TRUE;
- // We re-using a CURL connection here. If that connection still has certain
- // options set, it might change the GET into a POST. Make sure we clear out
+ // We re-using a CURL connection here. If that connection still has certain
+ // options set, it might change the GET into a POST. Make sure we clear out
// previous options.
$out = $this->curlExec(array(CURLOPT_HTTPGET => TRUE, CURLOPT_URL => url($path, $options), CURLOPT_NOBODY => FALSE, CURLOPT_HTTPHEADER => $headers));
$this->refreshVariables(); // Ensure that any changes to variables in the other thread are picked up.