Commit f3defda79e0c32eee74837a5d48bfa746cb3600c
1 parent
d1073d25
Exists in
master
and in
1 other branch
dernier bugfix test...
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
tests/TestCase/Controller/MaterielsControllerTest.php
... | ... | @@ -1064,9 +1064,9 @@ class MaterielsControllerTest extends General { |
1064 | 1064 | |
1065 | 1065 | // Le numero d'inventaire doit avoir été mis à jour avec la nouvelle année de la date d'achat |
1066 | 1066 | $new_num_inventaire = 'TEST-'.yyyy0.'-0001'; |
1067 | - $this->assertResponseContains($new_num_inventaire, "Le matériel CREATED édité n'a pas pu etre enregistré"); | |
1067 | + $this->assertResponseContains($new_num_inventaire, "Le numéro d'inventaire n'a pas été régénéré"); | |
1068 | 1068 | $m = $this->Materiels->get(2); |
1069 | - assertEquals($m->numero_laboratoire, $new_num_inventaire); | |
1069 | + assert($m->numero_laboratoire == $new_num_inventaire, "Le numéro d'inventaire n'a pas été régénéré"); | |
1070 | 1070 | |
1071 | 1071 | |
1072 | 1072 | ... | ... |