Fix code style errors.

This commit is contained in:
mark_story 2012-06-03 21:11:20 -04:00
parent 0e34bd4b1d
commit fceb028499
2 changed files with 1 additions and 3 deletions

View file

@ -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
*

View file

@ -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);
}