Browse Source

PHPCS fixes.

Phally 12 years ago
parent
commit
28dbc5b89b
1 changed files with 3 additions and 3 deletions
  1. 3 3
      lib/Cake/Test/Case/View/ViewTest.php

+ 3 - 3
lib/Cake/Test/Case/View/ViewTest.php

@@ -1356,7 +1356,7 @@ class ViewTest extends CakeTestCase {
 
 /**
  * Test setting a block's content to an object with __toString magic method
- * 
+ *
  * @return void
  */
 	public function testBlockSetObjectWithToString() {
@@ -1419,7 +1419,6 @@ class ViewTest extends CakeTestCase {
 		$this->assertSame('Block' . $value, $result);
 	}
 
-
 /**
  * Test appending an object without __toString magic method to a block with append.
  *
@@ -1437,7 +1436,7 @@ class ViewTest extends CakeTestCase {
 
 /**
  * Test prepending to a block with prepend.
- * 
+ *
  * @dataProvider blockValueProvider
  * @return void
  */
@@ -1448,6 +1447,7 @@ class ViewTest extends CakeTestCase {
 		$result = $this->View->fetch('test');
 		$this->assertEquals($value . 'Block', $result);
 	}
+
 /**
  * Test prepending an object without __toString magic method to a block with prepend.
  *