#977184 by Stevel. Mark Trapp: Fixed test that failed in PHP 5.3 environments.

merge-requests/26/head
Angie Byron 2010-11-21 10:14:25 +00:00
parent f5ebd774b1
commit fc8be9eeb4
1 changed files with 2 additions and 2 deletions

View File

@ -418,8 +418,8 @@ class FormElementTestCase extends DrupalWebTestCase {
}
// Verify that custom #description properties are output.
foreach (array('checkboxes', 'radios') as $type) {
$elements = $this->xpath('//input[@name=:name]/following-sibling::div[@class=:class]', array(
':name' => $type . '[foo]',
$elements = $this->xpath('//input[@id=:id]/following-sibling::div[@class=:class]', array(
':id' => 'edit-' . $type . '-foo',
':class' => 'description',
));
$this->assertTrue(count($elements), t('Custom %type option description found.', array(