Browse Source

fix camel case

thinkingmedia 9 years ago
parent
commit
244e5a106e
1 changed files with 3 additions and 3 deletions
  1. 3 3
      tests/TestCase/View/Helper/HtmlHelperTest.php

+ 3 - 3
tests/TestCase/View/Helper/HtmlHelperTest.php

@@ -1658,13 +1658,13 @@ class HtmlHelperTest extends TestCase
      *
      * @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);
     }