summaryrefslogtreecommitdiff
path: root/modules/simpletest/tests/common.test
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-11-03 06:47:23 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-11-03 06:47:23 +0000
commit0d8515deb750fe2a02ee6f9f12860caceed7248f (patch)
tree9898c0801cec5188f8e54229a2760a4ff15f44f5 /modules/simpletest/tests/common.test
parent3b2d24af0b8ca83415310e2b328cc60fa830837b (diff)
downloadbrdo-0d8515deb750fe2a02ee6f9f12860caceed7248f.tar.gz
brdo-0d8515deb750fe2a02ee6f9f12860caceed7248f.tar.bz2
#552478 by pwolanin, samj, dropcube, and sun: Improve link/header API and support on node/comment pages rel=canonical and rel=shortlink standards.
Diffstat (limited to 'modules/simpletest/tests/common.test')
-rw-r--r--modules/simpletest/tests/common.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/simpletest/tests/common.test b/modules/simpletest/tests/common.test
index 135ca18cb..5672961f3 100644
--- a/modules/simpletest/tests/common.test
+++ b/modules/simpletest/tests/common.test
@@ -530,7 +530,7 @@ class CascadingStylesheetsTestCase extends DrupalWebTestCase {
$css_preprocessed = '<style type="text/css">' . drupal_load_stylesheet_content($css, TRUE) . '</style>';
drupal_add_css($css, 'inline');
$styles = drupal_get_css();
- $this->assertEqual($styles, "\n" . $css_preprocessed, t('Rendering preprocessed inline CSS adds it to the page.'));
+ $this->assertEqual($styles, "\n" . $css_preprocessed . "\n", t('Rendering preprocessed inline CSS adds it to the page.'));
}
/**