commit 45859e9201c70d50b6f922bd6a1f95b7472c19fc Author: Joel Pittet Date: Tue Mar 4 17:22:55 2014 -0800 fix tests -reroll diff --git a/core/modules/system/lib/Drupal/system/Tests/Common/RenderTest.php b/core/modules/system/lib/Drupal/system/Tests/Common/RenderTest.php index 14d8292..6cfcb68 100644 --- a/core/modules/system/lib/Drupal/system/Tests/Common/RenderTest.php +++ b/core/modules/system/lib/Drupal/system/Tests/Common/RenderTest.php @@ -865,7 +865,7 @@ function testDrupalRenderChildElementRenderCachePlaceholder() { '#suffix' => '' ); $container['test_element'] = $test_element; - $expected_output = '
' . $context['bar'] . '
'; + $expected_output = '
' . $context['bar'] . '
' . "\n"; // #cache disabled. drupal_static_reset('_drupal_add_js'); @@ -938,7 +938,7 @@ function testDrupalRenderChildElementRenderCachePlaceholder() { $this->assertIdentical($token, $expected_token, 'The tokens are identical for the parent element'); // Verify the token is in the cached element. $expected_element = array( - '#markup' => '
', + '#markup' => '
' . "\n", '#post_render_cache' => array( 'common_test_post_render_cache_placeholder' => array( $expected_token => $context,