summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDavid Rothstein <drothstein@gmail.com>2016-02-01 00:10:00 -0500
committerDavid Rothstein <drothstein@gmail.com>2016-02-01 00:10:00 -0500
commit109a6ed98ecf32b21ff1474eb85193fed1cdf1db (patch)
treeb7ccc8659514ffa480586d64ee4ce1ca10b2a6de /modules
parent7dfe6574133c527e1509622a0316d787b53da953 (diff)
downloadbrdo-109a6ed98ecf32b21ff1474eb85193fed1cdf1db.tar.gz
brdo-109a6ed98ecf32b21ff1474eb85193fed1cdf1db.tar.bz2
Issue #2627524 by lokapujya: Change absense to absence in test assertion message
Diffstat (limited to 'modules')
-rw-r--r--modules/simpletest/tests/bootstrap.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/simpletest/tests/bootstrap.test b/modules/simpletest/tests/bootstrap.test
index d46c6ec8f..3d038ac95 100644
--- a/modules/simpletest/tests/bootstrap.test
+++ b/modules/simpletest/tests/bootstrap.test
@@ -152,7 +152,7 @@ class BootstrapPageCacheTestCase extends DrupalWebTestCase {
$this->drupalLogin($user);
$this->drupalGet('', array(), array('If-Modified-Since: ' . $last_modified, 'If-None-Match: ' . $etag));
$this->assertResponse(200, 'Conditional request returned 200 OK for authenticated user.');
- $this->assertFalse($this->drupalGetHeader('X-Drupal-Cache'), 'Absense of Page was not cached.');
+ $this->assertFalse($this->drupalGetHeader('X-Drupal-Cache'), 'Absence of Page was not cached.');
$this->assertFalse($this->drupalGetHeader('ETag'), 'ETag HTTP headers are not present for logged in users.');
$this->assertFalse($this->drupalGetHeader('Last-Modified'), 'Last-Modified HTTP headers are not present for logged in users.');
}