diff --git a/resources/views/layout/master.blade.php b/resources/views/layout/master.blade.php index d94267e6..c63ff42e 100644 --- a/resources/views/layout/master.blade.php +++ b/resources/views/layout/master.blade.php @@ -18,7 +18,7 @@ - + diff --git a/tests/Functional/Incident/MetaSeoTest.php b/tests/Functional/Incident/MetaSeoTest.php index c1ea4761..f61742b4 100644 --- a/tests/Functional/Incident/MetaSeoTest.php +++ b/tests/Functional/Incident/MetaSeoTest.php @@ -71,7 +71,7 @@ class MetaSeoTest extends AbstractTestCase $expectedDescription = htmlspecialchars($this->fakerFactory->sentence); $incident = $this->createIncidentWithMeta(['seo' => ['description' => $expectedDescription]]); - $page = $this->get(sprintf('/incidents/%d', $incident->id))->response; + $page = $this->get(sprintf('/incidents/%d', $incident->id)); $this->assertContains( sprintf('', $expectedDescription), @@ -92,7 +92,7 @@ class MetaSeoTest extends AbstractTestCase $title = htmlspecialchars($this->fakerFactory->title); $incident = $this->createIncidentWithMeta(['seo' => ['title' => $title]]); - $page = $this->get(sprintf('/incidents/%d', $incident->id))->response; + $page = $this->get(sprintf('/incidents/%d', $incident->id)); $this->assertContains( sprintf('', $title, $this->appName), @@ -120,7 +120,7 @@ class MetaSeoTest extends AbstractTestCase $presenter->occurred_at_formatted ); - $page = $this->get(sprintf('/incidents/%d', $incident->id))->response; + $page = $this->get(sprintf('/incidents/%d', $incident->id)); $this->assertContains( sprintf('', $expectedDescription), @@ -141,7 +141,7 @@ class MetaSeoTest extends AbstractTestCase $incident = $this->createIncidentWithMeta([]); $expectedTitle = sprintf('%s | %s', htmlspecialchars($incident->name), $this->appName); - $page = $this->get(sprintf('/incidents/%d', $incident->id))->response; + $page = $this->get(sprintf('/incidents/%d', $incident->id)); $this->assertContains( sprintf('', $expectedTitle),