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");