Skip to content

Commit

Permalink
Remove deprecated test.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Scherer committed Dec 21, 2015
1 parent 2f064b1 commit d9670ca
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/TestCase/View/Helper/FormHelperTest.php
Expand Up @@ -715,7 +715,7 @@ public function testCreateAutoUrl()
*/
public function testCreateNoUrl()
{
$result = $this->Form->create(false, ['url' => false]);
$result = $this->Form->create(false, ['url' => ['action' => false]]);
$expected = [
'form' => [
'method' => 'post',
Expand All @@ -726,9 +726,6 @@ public function testCreateNoUrl()
'/div'
];
$this->assertHtml($expected, $result);

$result = $this->Form->create(false, ['url' => ['action' => false]]);
$this->assertHtml($expected, $result);
}

/**
Expand Down

0 comments on commit d9670ca

Please sign in to comment.