diff options
Diffstat (limited to 'tests/Unit/Routing/UrlGeneratorTest.php')
-rw-r--r-- | tests/Unit/Routing/UrlGeneratorTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Unit/Routing/UrlGeneratorTest.php b/tests/Unit/Routing/UrlGeneratorTest.php index 34c2f610..ddb6c975 100644 --- a/tests/Unit/Routing/UrlGeneratorTest.php +++ b/tests/Unit/Routing/UrlGeneratorTest.php @@ -48,7 +48,7 @@ class UrlGeneratorTest extends TestCase $urlGenerator = new UrlGenerator(); $this->assertInstanceOf(UrlGeneratorInterface::class, $urlGenerator); - $url = $urlGenerator->link_to($urlToPath, $arguments); + $url = $urlGenerator->linkTo($urlToPath, $arguments); $this->assertEquals($expectedUrl, $url); } } |