From d276d5aa523db490c12ac83f91282ddac34efdcb Mon Sep 17 00:00:00 2001 From: gmorel Date: Sat, 23 Nov 2013 17:37:48 +0100 Subject: [PATCH] Fix Coupon/Condition utf8 issue --- .../Implementation/MatchForTotalAmountManagerTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/lib/Thelia/Tests/Condition/Implementation/MatchForTotalAmountManagerTest.php b/core/lib/Thelia/Tests/Condition/Implementation/MatchForTotalAmountManagerTest.php index 0db635e51..153737d1d 100644 --- a/core/lib/Thelia/Tests/Condition/Implementation/MatchForTotalAmountManagerTest.php +++ b/core/lib/Thelia/Tests/Condition/Implementation/MatchForTotalAmountManagerTest.php @@ -940,9 +940,9 @@ class MatchForTotalAmountManagerTest extends \PHPUnit_Framework_TestCase 'title' => 'Price', 'availableOperators' => array('==' => 'Price'), 'availableValues' => array( - 'EUR' => '€', + 'EUR' => '€', 'USD' => '$', - 'GBP' => '£', + 'GBP' => '£', ), 'type' => 'select', 'class' => 'form-control',