From d2537990a6a2afdd556ca3c8cb524ce7eb3ef514 Mon Sep 17 00:00:00 2001 From: Brabli <67018167+Brabli@users.noreply.github.com> Date: Thu, 21 Jul 2022 14:43:04 +0100 Subject: [PATCH] Remove excess code --- tests/Service/GeocodeTest.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/Service/GeocodeTest.php b/tests/Service/GeocodeTest.php index 4660f21..39b1752 100644 --- a/tests/Service/GeocodeTest.php +++ b/tests/Service/GeocodeTest.php @@ -23,12 +23,11 @@ class GeocodeTest extends KernelTestCase $kernel = new AppKernel('test', false); $kernel->boot(); $this->geocoder = $kernel->getContainer()->get('pcm_geocode.geocoder'); - } public function testGeocodeInstance(): void { - $this->assertInstanceOf(\Pcm\GeocodeBundle\Service\Geocoder::class, $this->geocoder); + $this->assertInstanceOf(Geocoder::class, $this->geocoder); } public function testGeocodePostcodeThrowsOnInvalidInput(): void