Skip to content

Commit 2bec3ca

Browse files
committed
[BUGFIX] Fix Typo in test name
1 parent 3eca0a5 commit 2bec3ca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/guides/tests/unit/UrlGeneratorTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010

1111
final class UrlGeneratorTest extends TestCase
1212
{
13-
#[DataProvider('cannicalUrlProvider')]
14-
public function testCannicalUrl(string $basePath, string $url, string $result): void
13+
#[DataProvider('canonicalUrlProvider')]
14+
public function testCanonicalUrl(string $basePath, string $url, string $result): void
1515
{
1616
$urlGenerator = new UrlGenerator();
1717
self::assertSame($result, $urlGenerator->canonicalUrl($basePath, $url));
1818
}
1919

2020
/** @return string[][] */
21-
public static function cannicalUrlProvider(): array
21+
public static function canonicalUrlProvider(): array
2222
{
2323
return [
2424
[

0 commit comments

Comments
 (0)