Remove excess code

This commit is contained in:
Brabli
2022-07-21 14:43:04 +01:00
parent aa00fed016
commit d2537990a6

View File

@@ -23,12 +23,11 @@ class GeocodeTest extends KernelTestCase
$kernel = new AppKernel('test', false); $kernel = new AppKernel('test', false);
$kernel->boot(); $kernel->boot();
$this->geocoder = $kernel->getContainer()->get('pcm_geocode.geocoder'); $this->geocoder = $kernel->getContainer()->get('pcm_geocode.geocoder');
} }
public function testGeocodeInstance(): void public function testGeocodeInstance(): void
{ {
$this->assertInstanceOf(\Pcm\GeocodeBundle\Service\Geocoder::class, $this->geocoder); $this->assertInstanceOf(Geocoder::class, $this->geocoder);
} }
public function testGeocodePostcodeThrowsOnInvalidInput(): void public function testGeocodePostcodeThrowsOnInvalidInput(): void