diff options
-rw-r--r-- | modules/php/php.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/php/php.test b/modules/php/php.test index 441563e3a..25a3d3786 100644 --- a/modules/php/php.test +++ b/modules/php/php.test @@ -23,7 +23,7 @@ class PHPTestCase extends DrupalWebTestCase { * @return stdObject Node object. */ function createNodeWithCode() { - return $this->drupalCreateNode(array('body' => array('value' => '<?php print "SimpleTest PHP was executed!"; ?>'))); + return $this->drupalCreateNode(array('body' => array(array('value' => '<?php print "SimpleTest PHP was executed!"; ?>')))); } } |