mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fix code style errors.
This commit is contained in:
parent
0e34bd4b1d
commit
fceb028499
2 changed files with 1 additions and 3 deletions
|
@ -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
|
||||
*
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue