Skip to content

Commit

Permalink
PHPCS fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Phally committed Aug 31, 2013
1 parent 75e8fac commit 28dbc5b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/Cake/Test/Case/View/ViewTest.php
Expand Up @@ -1356,7 +1356,7 @@ public function testBlockSetNull() {

/**
* Test setting a block's content to an object with __toString magic method
*
*
* @return void
*/
public function testBlockSetObjectWithToString() {
Expand Down Expand Up @@ -1419,7 +1419,6 @@ public function testBlockAppend($value) {
$this->assertSame('Block' . $value, $result);
}


/**
* Test appending an object without __toString magic method to a block with append.
*
Expand All @@ -1437,7 +1436,7 @@ public function testBlockAppendObjectWithoutToString() {

/**
* Test prepending to a block with prepend.
*
*
* @dataProvider blockValueProvider
* @return void
*/
Expand All @@ -1448,6 +1447,7 @@ public function testBlockPrepend($value) {
$result = $this->View->fetch('test');
$this->assertEquals($value . 'Block', $result);
}

/**
* Test prepending an object without __toString magic method to a block with prepend.
*
Expand Down

0 comments on commit 28dbc5b

Please sign in to comment.