2
0
forked from Wavyzz/dolibarr

Fix better format address for jp in romaji

This commit is contained in:
Laurent Destailleur
2021-09-02 10:39:56 +02:00
parent 8193e792b5
commit e22bd5c048
2 changed files with 12 additions and 2 deletions

View File

@@ -951,6 +951,10 @@ class FunctionsLibTest extends PHPUnit\Framework\TestCase
$object->country_code='AU';
$address=dol_format_address($object);
$this->assertEquals("21 jump street\nMyTown, MyState, 99999", $address);
$object->country_code='JP';
$address=dol_format_address($object);
$this->assertEquals("21 jump street\nMyState, MyTown 99999", $address);
}