Index: modules/php/php.test =================================================================== RCS file: /cvs/drupal/drupal/modules/php/php.test,v retrieving revision 1.12 diff -u -r1.12 php.test --- modules/php/php.test 12 Jun 2009 08:39:38 -0000 1.12 +++ modules/php/php.test 16 Jun 2009 16:28:42 -0000 @@ -23,7 +23,7 @@ * @return stdObject Node object. */ function createNodeWithCode() { - return $this->drupalCreateNode(array('body' => array('value' => ''))); + return $this->drupalCreateNode(array('body' => array(array('value' => '')))); } } Index: modules/simpletest/tests/xmlrpc.test =================================================================== RCS file: /cvs/drupal/drupal/modules/simpletest/tests/xmlrpc.test,v retrieving revision 1.9 diff -u -r1.9 xmlrpc.test --- modules/simpletest/tests/xmlrpc.test 24 May 2009 17:39:34 -0000 1.9 +++ modules/simpletest/tests/xmlrpc.test 16 Jun 2009 16:28:42 -0000 @@ -105,7 +105,7 @@ $int_8 = mt_rand(-100, 100); $l_res_8 = xmlrpc_test_simpleStructReturnTest($int_8); $r_res_8 = xmlrpc($xml_url, 'validator1.simpleStructReturnTest', $int_8); - $this->assertIdentical($l_res_8, $r_res_8, 'nested struct test: %s'); + $this->assertIdentical($l_res_8, $r_res_8, 'simple struct test: %s'); /* Now test multicall */ $x = array();