Index: modules/simpletest/tests/common.test
===================================================================
RCS file: /cvs/drupal/drupal/modules/simpletest/tests/common.test,v
retrieving revision 1.51
diff -u -r1.51 common.test
--- modules/simpletest/tests/common.test	4 Jul 2009 18:26:42 -0000	1.51
+++ modules/simpletest/tests/common.test	5 Jul 2009 01:59:02 -0000
@@ -265,8 +265,8 @@
    * Tests rendering inline stylesheets through a full page request.
    */
   function testRenderInlineFullPage() {
-    $css = 'body { padding: 0px; }';
-    $compressed_css = '<style type="text/css">' . drupal_load_stylesheet_content($css, TRUE) . '</style>';
+    $css = 'body { font-size: 254px; }';
+    $expected = 'font-size:254px;';
 
     // Create a node, using the PHP filter that tests drupal_add_css().
     $settings = array(
@@ -278,7 +278,7 @@
 
     // Fetch the page.
     $this->drupalGet('node/' . $node->nid);
-    $this->assertRaw($compressed_css, t('Inline stylesheets appear in the full page rendering.'));
+    $this->assertRaw($expected, t('Inline stylesheets appear in the full page rendering.'));
   }
 }
 
