From 0fa19bde9f8dc3fc7872cbaaaeec375a9c6a36a6 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sun, 25 Jan 2015 06:59:26 +0100 Subject: [PATCH] fixed tests --- .../Component/Console/Question/ConfirmationQuestion.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Symfony/Component/Console/Question/ConfirmationQuestion.php b/src/Symfony/Component/Console/Question/ConfirmationQuestion.php index eaea45e770..9e55859053 100644 --- a/src/Symfony/Component/Console/Question/ConfirmationQuestion.php +++ b/src/Symfony/Component/Console/Question/ConfirmationQuestion.php @@ -31,9 +31,8 @@ class ConfirmationQuestion extends Question { parent::__construct($question, (bool) $default); - $this->setNormalizer($this->getDefaultNormalizer()); - $this->trueAnswerRegex = $trueAnswerRegex; + $this->setNormalizer($this->getDefaultNormalizer()); } /**