diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-12-10 15:39:43 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-12-10 15:39:43 +0000 |
commit | c2f26d3368d38ce4d73aa0089d09d2d78ccf9285 (patch) | |
tree | 3db0c442068bd5bfb2a91e26675dfe9019cc8fab /modules/field/tests | |
parent | 3016bcbd235b75e60a44566368c2d3702a625174 (diff) | |
download | brdo-c2f26d3368d38ce4d73aa0089d09d2d78ccf9285.tar.gz brdo-c2f26d3368d38ce4d73aa0089d09d2d78ccf9285.tar.bz2 |
- Patch #653940 by sun: tests weren't reporting all errors.
Diffstat (limited to 'modules/field/tests')
-rw-r--r-- | modules/field/tests/field.test | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/field/tests/field.test b/modules/field/tests/field.test index a0290c1eb..286d1a493 100644 --- a/modules/field/tests/field.test +++ b/modules/field/tests/field.test @@ -17,8 +17,9 @@ class FieldTestCase extends DrupalWebTestCase { */ function setUp() { // Call parent::setUp(). + // @see http://www.php.net/manual/en/function.call-user-func-array.php#73105 $args = func_get_args(); - call_user_func_array(array('parent', 'setUp'), $args); + call_user_func_array(array($this, 'parent::setUp'), $args); // Set default storage backend. variable_set('field_storage_default', $this->default_storage); } |