diff --git a/tests/TestCase/View/Helper/HtmlHelperTest.php b/tests/TestCase/View/Helper/HtmlHelperTest.php index 22d1d164209..b590ab6dd37 100644 --- a/tests/TestCase/View/Helper/HtmlHelperTest.php +++ b/tests/TestCase/View/Helper/HtmlHelperTest.php @@ -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); }