From 94f786e2b9b57c885ea91dbf37b200205dbf3204 Mon Sep 17 00:00:00 2001 From: Amrouche Hamza Date: Sat, 16 Jul 2016 10:49:04 +0200 Subject: [PATCH] hotfix: entrypoint in hydra tests --- tests/Hydra/ApiDocumentationBuilderTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Hydra/ApiDocumentationBuilderTest.php b/tests/Hydra/ApiDocumentationBuilderTest.php index 345ebc143bc..1cf6466aef0 100644 --- a/tests/Hydra/ApiDocumentationBuilderTest.php +++ b/tests/Hydra/ApiDocumentationBuilderTest.php @@ -61,7 +61,7 @@ public function testGetApiDocumention() $urlGenerator = $this->prophesize(UrlGeneratorInterface::class); $urlGenerator->generate('api_hydra_doc')->willReturn('/doc')->shouldBeCalled(1); - $urlGenerator->generate('api_hydra_entrypoint')->willReturn('/')->shouldBeCalled(1); + $urlGenerator->generate('api_entrypoint')->willReturn('/')->shouldBeCalled(1); $urlGenerator->generate('api_hydra_doc', [], UrlGeneratorInterface::ABS_URL)->willReturn('/doc')->shouldBeCalled(1);