summaryrefslogtreecommitdiff
path: root/modules/simpletest/tests
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-08-17 18:25:31 +0000
committerDries Buytaert <dries@buytaert.net>2010-08-17 18:25:31 +0000
commit946a8d5967f30282b5fc899ee4ea7ae3708d9398 (patch)
tree2566c143ef03598ec4a039ed7ee086fd7ebc64d2 /modules/simpletest/tests
parented125d485feadc16f1ea1fa78d660b65283c5043 (diff)
downloadbrdo-946a8d5967f30282b5fc899ee4ea7ae3708d9398.tar.gz
brdo-946a8d5967f30282b5fc899ee4ea7ae3708d9398.tar.bz2
- Patch #879910 by plach: fixed text_field_prepare_translation() broken.
Diffstat (limited to 'modules/simpletest/tests')
-rw-r--r--modules/simpletest/tests/form.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/simpletest/tests/form.test b/modules/simpletest/tests/form.test
index 525a8a291..32865c01e 100644
--- a/modules/simpletest/tests/form.test
+++ b/modules/simpletest/tests/form.test
@@ -63,7 +63,7 @@ class FormsTestCase extends DrupalWebTestCase {
$elements['file']['empty_values'] = $empty_strings;
// Regular expression to find the expected marker on required elements.
- $required_marker_preg = '@<label.*<span class="form-required" title="This field is required\.">\*</span></label>@';
+ $required_marker_preg = '@<label.*<span class="form-required" title="This field is required\.">\*</span>.*</label>@';
// Go through all the elements and all the empty values for them.
foreach ($elements as $type => $data) {