Skip to content

Commit

Permalink
Fix tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Scherer committed Dec 21, 2015
1 parent a0c5405 commit 2f064b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/TestCase/View/Helper/FormHelperTest.php
Expand Up @@ -727,7 +727,7 @@ public function testCreateNoUrl()
];
$this->assertHtml($expected, $result);

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

Expand Down Expand Up @@ -783,7 +783,7 @@ public function testCreateWithAcceptCharset()
$result = $this->Form->create(
$this->article,
[
'type' => 'post', 'action' => 'index', 'encoding' => 'iso-8859-1'
'type' => 'post', 'url' => ['action' => 'index'], 'encoding' => 'iso-8859-1'
]
);
$expected = [
Expand Down

0 comments on commit 2f064b1

Please sign in to comment.