Browse Source

Fixing CS

Jose Lorenzo Rodriguez 12 years ago
parent
commit
63b65e2f69
1 changed files with 3 additions and 3 deletions
  1. 3 3
      lib/Cake/Test/Case/Model/Datasource/DboSourceTest.php

+ 3 - 3
lib/Cake/Test/Case/Model/Datasource/DboSourceTest.php

@@ -685,17 +685,17 @@ class DboSourceTest extends CakeTestCase {
 
 /**
  * Test that flushMethodCache works as expected
- * 
+ *
  * @return void
  */
 	public function testFlushMethodCache() {
 		$this->testDb->cacheMethods = true;
-		$this->testDb->cacheMethod('name','some-key','stuff');
+		$this->testDb->cacheMethod('name', 'some-key', 'stuff');
 
 		Cache::write('method_cache', DboTestSource::$methodCache, '_cake_core_');
 
 		$this->testDb->flushMethodCache();
-		$result = $this->testDb->cacheMethod('name','some-key');
+		$result = $this->testDb->cacheMethod('name', 'some-key');
 		$this->assertNull($result);
 	}