commit 611f829898f5ae75da2f92fce0aece7a831bae36 Author: Jen Lampton Date: Wed Apr 17 16:32:21 2013 -0700 update tests to match attribute order diff --git a/core/modules/block/lib/Drupal/block/Tests/BlockStorageUnitTest.php b/core/modules/block/lib/Drupal/block/Tests/BlockStorageUnitTest.php index 817ffd1..20018a0 100644 --- a/core/modules/block/lib/Drupal/block/Tests/BlockStorageUnitTest.php +++ b/core/modules/block/lib/Drupal/block/Tests/BlockStorageUnitTest.php @@ -140,7 +140,7 @@ protected function renderTests() { // Test the rendering of a block. $output = entity_view($entity, 'block'); $expected = array(); - $expected[] = '
'; + $expected[] = '
'; $expected[] = ' '; $expected[] = ' '; $expected[] = ''; @@ -159,7 +159,7 @@ protected function renderTests() { $entity->set('label', 'Powered by Bananas'); $output = entity_view($entity, 'block'); $expected = array(); - $expected[] = '
'; + $expected[] = '
'; $expected[] = ' '; $expected[] = '

Powered by Bananas

'; $expected[] = ' '; diff --git a/core/modules/block/lib/Drupal/block/Tests/BlockTemplateSuggestionsUnitTest.php b/core/modules/block/lib/Drupal/block/Tests/BlockTemplateSuggestionsUnitTest.php index 7f18dee..be36f64 100644 --- a/core/modules/block/lib/Drupal/block/Tests/BlockTemplateSuggestionsUnitTest.php +++ b/core/modules/block/lib/Drupal/block/Tests/BlockTemplateSuggestionsUnitTest.php @@ -8,7 +8,6 @@ namespace Drupal\block\Tests; use Drupal\simpletest\WebTestBase; -use Drupal\Core\Template\Attribute; /** * Unit tests for template_preprocess_block().