Use label instead of libelle

This commit is contained in:
Laurent Destailleur 2020-04-23 18:33:25 +02:00
parent 86be024dcc
commit 73ddfb1c81

View File

@ -148,13 +148,13 @@ class MouvementStockTest extends PHPUnit\Framework\TestCase
// We create a product for tests
$warehouse1=new Entrepot($db);
$warehouse1->initAsSpecimen();
$warehouse1->libelle.=' 1';
$warehouse1->label.=' 1';
$warehouse1->description.=' 1';
$warehouse1id=$warehouse1->create($user);
$warehouse2=new Entrepot($db);
$warehouse2->initAsSpecimen();
$warehouse2->libelle.=' 2';
$warehouse2->label.=' 2';
$warehouse2->description.=' 2';
$warehouse2id=$warehouse2->create($user);