From c1431bdf93ed33d897d3d375d591821997520c63 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sat, 31 May 2014 14:22:19 +0200 Subject: [PATCH] Fix: Typo --- build/debian/control | 2 +- test/phpunit/LangTest.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build/debian/control b/build/debian/control index 8f2c4474d98..d22f556acaa 100755 --- a/build/debian/control +++ b/build/debian/control @@ -42,7 +42,7 @@ Description: Web based software to manage a company or foundation Dolibarr was designed to be easy to use. Only the features that you need are visible, depending on which modules were activated. . - This is a example of most common used modules: + This is an example of most common used modules: . Customers, Suppliers or Prospects directory, Contacts directory, diff --git a/test/phpunit/LangTest.php b/test/phpunit/LangTest.php index 75bdc958c14..7d173481501 100755 --- a/test/phpunit/LangTest.php +++ b/test/phpunit/LangTest.php @@ -154,11 +154,11 @@ class LangTest extends PHPUnit_Framework_TestCase $result=$tmplangs->trans("SeparatorDecimal"); print __METHOD__." SeparatorDecimal=".$result."\n"; - $this->assertContains($result,array('.',',','/',' ','','None')); + $this->assertContains($result,array('.',',','/',' ','','None'), 'Error for code '.$code); $result=$tmplangs->trans("SeparatorThousand"); print __METHOD__." SeparatorThousand=".$result."\n"; - $this->assertContains($result,array('.',',','/',' ','','None','Space')); + $this->assertContains($result, array('.',',','/',' ','','None','Space'), 'Error for code '.$code); // Test java string contains only d,M,y,/,-,. and not m,... $result=$tmplangs->trans("FormatDateShortJava");