diff --git a/lib/Cake/Test/Case/Model/Datasource/DboSourceTest.php b/lib/Cake/Test/Case/Model/Datasource/DboSourceTest.php index 0e03486f1..c6cef46c1 100644 --- a/lib/Cake/Test/Case/Model/Datasource/DboSourceTest.php +++ b/lib/Cake/Test/Case/Model/Datasource/DboSourceTest.php @@ -629,7 +629,6 @@ class DboSourceTest extends CakeTestCase { $this->assertNull($result); } - /** * Test that rare collisions do not happen with method caching * @@ -876,7 +875,6 @@ class DboSourceTest extends CakeTestCase { $this->assertTrue(empty(DboTestSource::$methodCache['fields']), 'Cache not empty'); } - /** * test that fields() method cache detects datasource changes * diff --git a/lib/Cake/Test/Case/View/XmlViewTest.php b/lib/Cake/Test/Case/View/XmlViewTest.php index b2499dbf2..44582e79a 100644 --- a/lib/Cake/Test/Case/View/XmlViewTest.php +++ b/lib/Cake/Test/Case/View/XmlViewTest.php @@ -62,7 +62,7 @@ class XmlViewTest extends CakeTestCase { $View = new XmlView($Controller); $output = $View->render(false); - $expected = Xml::build(array('response'=> array('users'=> $data)))->asXML(); + $expected = Xml::build(array('response' => array('users' => $data)))->asXML(); $this->assertSame($expected, $output); }