summaryrefslogtreecommitdiff
path: root/modules/block/block.test
diff options
context:
space:
mode:
Diffstat (limited to 'modules/block/block.test')
-rw-r--r--modules/block/block.test10
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/block/block.test b/modules/block/block.test
index 3b67f4b92..544191915 100644
--- a/modules/block/block.test
+++ b/modules/block/block.test
@@ -111,17 +111,17 @@ class BlockTestCase extends DrupalWebTestCase {
*/
function testBlockVisibility() {
$block = array();
-
+
// Create a random title for the block
$title = $this->randomName(8);
-
+
// Create the custom block
$custom_block = array();
$custom_block['info'] = $this->randomName(8);
$custom_block['title'] = $title;
$custom_block['body'] = $this->randomName(32);
$this->drupalPost('admin/structure/block/add', $custom_block, t('Save block'));
-
+
$bid = db_query("SELECT bid FROM {block_custom} WHERE info = :info", array(':info' => $custom_block['info']))->fetchField();
$block['module'] = 'block';
$block['delta'] = $bid;
@@ -253,7 +253,7 @@ class NewDefaultThemeBlocks extends DrupalWebTestCase {
'group' => 'Block',
);
}
-
+
/**
* Check the enabled Garland blocks are correctly copied over.
*/
@@ -297,7 +297,7 @@ class BlockAdminThemeTestCase extends DrupalWebTestCase {
'group' => 'Block',
);
}
-
+
/**
* Check for the accessibility of the admin theme on the block admin page.
*/