From a01a74ef79675776643e9f716201e1723841583a Mon Sep 17 00:00:00 2001 From: Dustin Whittle Date: Wed, 22 Sep 2010 23:51:42 -0700 Subject: [PATCH] fixed typo in options --- src/Symfony/Bundle/FrameworkBundle/Test/WebTestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/Test/WebTestCase.php b/src/Symfony/Bundle/FrameworkBundle/Test/WebTestCase.php index b18c0b0780..53749de36f 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Test/WebTestCase.php +++ b/src/Symfony/Bundle/FrameworkBundle/Test/WebTestCase.php @@ -96,7 +96,7 @@ abstract class WebTestCase extends BaseWebTestCase return new $class( isset($options['environment']) ? $options['environment'] : 'test', - isset($options['debug']) ? $debug : true + isset($options['debug']) ? $options['debug'] : true ); } }