From 4dbd72fedd432ff95c30ce9e7a651c9599e86603 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Tue, 25 Nov 2014 22:22:05 +0100 Subject: [PATCH] register chillmain in the framework used in tests This should fix travis tests --- Tests/Fixtures/App/app/AppKernel.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Tests/Fixtures/App/app/AppKernel.php b/Tests/Fixtures/App/app/AppKernel.php index 2e9b78c1f..332e8e396 100644 --- a/Tests/Fixtures/App/app/AppKernel.php +++ b/Tests/Fixtures/App/app/AppKernel.php @@ -15,6 +15,7 @@ class AppKernel extends Kernel new \Symfony\Bundle\AsseticBundle\AsseticBundle(), new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(), new Chill\PersonBundle\ChillPersonBundle(), + new Chill\MainBundle\ChillMainBundle() #add here all the required bundle (some bundle are not required) ); }