Przeglądaj źródła

fixed typo in options

Dustin Whittle 14 lat temu
rodzic
commit
a01a74ef79

+ 1 - 1
src/Symfony/Bundle/FrameworkBundle/Test/WebTestCase.php

@@ -96,7 +96,7 @@ abstract class WebTestCase extends BaseWebTestCase
 
 
         return new $class(
         return new $class(
             isset($options['environment']) ? $options['environment'] : 'test',
             isset($options['environment']) ? $options['environment'] : 'test',
-            isset($options['debug']) ? $debug : true
+            isset($options['debug']) ? $options['debug'] : true
         );
         );
     }
     }
 }
 }