summaryrefslogtreecommitdiff
path: root/modules/block
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-10-21 19:31:39 +0000
committerDries Buytaert <dries@buytaert.net>2010-10-21 19:31:39 +0000
commit3cbd47d1458b9914d0ede84fd31d4ecc0c8e684b (patch)
tree5818038bc57b05fdcfa8b23fbf43e69f148f5f8b /modules/block
parent2a0e32644822d34416f4633b4c6fc8674870e6d8 (diff)
downloadbrdo-3cbd47d1458b9914d0ede84fd31d4ecc0c8e684b.tar.gz
brdo-3cbd47d1458b9914d0ede84fd31d4ecc0c8e684b.tar.bz2
- Patch #647228 by sun, katbailey, Rob Loach: links are needlessly unable to fully participate in D7 AJAX framework features.
Diffstat (limited to 'modules/block')
-rw-r--r--modules/block/block.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/block/block.test b/modules/block/block.test
index 4c92eb582..c3d02f34c 100644
--- a/modules/block/block.test
+++ b/modules/block/block.test
@@ -87,8 +87,8 @@ class BlockTestCase extends DrupalWebTestCase {
// Verify presence of configure and delete links for custom block.
$this->drupalGet('admin/structure/block');
- $this->assertRaw(l(t('configure'), 'admin/structure/block/manage/block/' . $bid . '/configure'), t('Custom block configure link found.'));
- $this->assertRaw(l(t('delete'), 'admin/structure/block/manage/block/' . $bid . '/delete'), t('Custom block delete link found.'));
+ $this->assertLinkByHref('admin/structure/block/manage/block/' . $bid . '/configure', 0, t('Custom block configure link found.'));
+ $this->assertLinkByHref('admin/structure/block/manage/block/' . $bid . '/delete', 0, t('Custom block delete link found.'));
// Set visibility only for authenticated users, to verify delete functionality.
$edit = array();