Skip to content

Commit

Permalink
fix camel case
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkingmedia committed Oct 14, 2016
1 parent 5cd9cc6 commit 244e5a1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/TestCase/View/Helper/HtmlHelperTest.php
Expand Up @@ -1658,13 +1658,13 @@ public function dataMetaLinksProvider()
*
* @param string $type
* @param array $url
* @param string $expected_url
* @param string $expectedUrl
* @dataProvider dataMetaLinksProvider
*/
public function testMetaLinks($type, array $url, $expected_url)
public function testMetaLinks($type, array $url, $expectedUrl)
{
$result = $this->Html->meta($type, $url);
$expected = ['link' => ['href' => $expected_url, 'rel' => $type]];
$expected = ['link' => ['href' => $expectedUrl, 'rel' => $type]];
$this->assertHtml($expected, $result);
}

Expand Down

0 comments on commit 244e5a1

Please sign in to comment.