Browse Source

Remove parameter that does nothing.

Mark Story 12 years ago
parent
commit
0b8569fea1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/View/Helper/FormHelperTest.php

+ 1 - 1
tests/TestCase/View/Helper/FormHelperTest.php

@@ -698,7 +698,7 @@ class FormHelperTest extends TestCase {
 		]);
 		$this->assertNotContains('testKey', $result);
 
-		$result = $this->Form->end('Save');
+		$result = $this->Form->end();
 		$this->assertNotContains('testKey', $result);
 	}