From 05ea9afa02806faa8f8af94efdd77fe13d55b0d6 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur <eldy@destailleur.fr> Date: Fri, 18 Dec 2015 20:53:04 +0100 Subject: [PATCH] Fix to manage de_CH thousand separator --- test/phpunit/LangTest.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/phpunit/LangTest.php b/test/phpunit/LangTest.php index d0fba783064..4487568c1d6 100644 --- a/test/phpunit/LangTest.php +++ b/test/phpunit/LangTest.php @@ -154,16 +154,16 @@ class LangTest extends PHPUnit_Framework_TestCase $tmplangs->setDefaultLang($langcode); $tmplangs->load("main"); - $result=$tmplangs->trans("SeparatorDecimal"); + $result=$tmplangs->transnoentitiesnoconv("SeparatorDecimal"); print __METHOD__." SeparatorDecimal=".$result."\n"; $this->assertContains($result,array('.',',','/',' ','','None'), 'Error for decimal separator for lang code '.$code); // Note that ، that is coma for RTL languages is not supported - $result=$tmplangs->trans("SeparatorThousand"); + $result=$tmplangs->transnoentitiesnoconv("SeparatorThousand"); print __METHOD__." SeparatorThousand=".$result."\n"; - $this->assertContains($result, array('.',',','/',' ','','None','Space'), 'Error for thousand separator for lang code '.$code); // Note that ، that is coma for RTL languages is not supported + $this->assertContains($result, array('.',',','/',' ','','\'','None','Space'), 'Error for thousand separator for lang code '.$code); // Note that ، that is coma for RTL languages is not supported // Test java string contains only d,M,y,/,-,. and not m,... - $result=$tmplangs->trans("FormatDateShortJava"); + $result=$tmplangs->transnoentitiesnoconv("FormatDateShortJava"); print __METHOD__." FormatDateShortJava=".$result."\n"; $this->assertRegExp('/^[dMy\/\-\.]+$/',$result,'FormatDateShortJava KO for lang code '.$code); $result=$tmplangs->trans("FormatDateShortJavaInput"); -- GitLab