diff options
author | Jennifer Hodgdon <yahgrp@poplarware.com> | 2012-03-23 09:25:18 -0700 |
---|---|---|
committer | Jennifer Hodgdon <yahgrp@poplarware.com> | 2012-03-23 09:25:18 -0700 |
commit | c82458cb7ca69406c58065da546d9ea0e9961560 (patch) | |
tree | b1aed8d74966d9410d95e86e265be13579dad727 /modules/simpletest | |
parent | 1d535113d468150f126aacd170153ae5120838c5 (diff) | |
download | brdo-c82458cb7ca69406c58065da546d9ea0e9961560.tar.gz brdo-c82458cb7ca69406c58065da546d9ea0e9961560.tar.bz2 |
Issue #1182296 by BTMash, timplunkett: Fix tests for site name in database upgrade tests, which were causing random 7.x is broken test failures
Diffstat (limited to 'modules/simpletest')
-rw-r--r-- | modules/simpletest/tests/upgrade/upgrade.test | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/simpletest/tests/upgrade/upgrade.test b/modules/simpletest/tests/upgrade/upgrade.test index 2602b09a2..172f30e69 100644 --- a/modules/simpletest/tests/upgrade/upgrade.test +++ b/modules/simpletest/tests/upgrade/upgrade.test @@ -549,7 +549,7 @@ class BasicStandardUpdatePath extends UpdatePathTestCase { )); // Test that the site name is correctly displayed. - $this->assertText('drupal', t('The site name is correctly displayed.')); + $this->assertText('Drupal', t('The site name is correctly displayed.')); // Verify that the main admin sections are available. $this->drupalGet('admin'); @@ -625,7 +625,7 @@ class BasicMinimalUpdatePath extends UpdatePathTestCase { )); // Test that the site name is correctly displayed. - $this->assertText('drupal', t('The site name is correctly displayed.')); + $this->assertText('Drupal', t('The site name is correctly displayed.')); // Verify that the main admin sections are available. $this->drupalGet('admin'); @@ -702,7 +702,7 @@ class FilledStandardUpdatePath extends UpdatePathTestCase { )); // Test that the site name is correctly displayed. - $this->assertText('drupal', t('The site name is correctly displayed.')); + $this->assertText('Drupal', t('The site name is correctly displayed.')); // Verify that the main admin sections are available. $this->drupalGet('admin'); @@ -778,7 +778,7 @@ class FilledMinimalUpdatePath extends UpdatePathTestCase { )); // Test that the site name is correctly displayed. - $this->assertText('drupal', t('The site name is correctly displayed.')); + $this->assertText('Drupal', t('The site name is correctly displayed.')); // Verify that the main admin sections are available. $this->drupalGet('admin'); |