From 85796e2fef32e3b2b3029f862078eef0902b22c8 Mon Sep 17 00:00:00 2001 From: Kamil Kokot Date: Thu, 10 Jan 2019 00:18:46 +0100 Subject: [PATCH] Fix build on Symfony 3.4 --- tests/Behat/Context/TestContext.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Behat/Context/TestContext.php b/tests/Behat/Context/TestContext.php index e660e75..1398c1f 100644 --- a/tests/Behat/Context/TestContext.php +++ b/tests/Behat/Context/TestContext.php @@ -119,7 +119,7 @@ class Kernel extends HttpKernel protected function configureRoutes(RouteCollectionBuilder $routes) { - $routes->add('/hello-world', 'kernel::helloWorld'); + $routes->add('/hello-world', 'kernel:helloWorld'); } } CON