Bläddra i källkod

fixed typo in options

Dustin Whittle 14 år sedan
förälder
incheckning
a01a74ef79
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      src/Symfony/Bundle/FrameworkBundle/Test/WebTestCase.php

+ 1 - 1
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
         );
     }
 }