diff --git a/tests/TestCase/Controller/MaterielsControllerTest.php b/tests/TestCase/Controller/MaterielsControllerTest.php index 3b7526b..96ca9e6 100755 --- a/tests/TestCase/Controller/MaterielsControllerTest.php +++ b/tests/TestCase/Controller/MaterielsControllerTest.php @@ -132,7 +132,7 @@ class MaterielsControllerTest extends General { private function _checkMaterielExistsInViewView($role, $id, $designation=NULL, $num_inventaire=NULL) {} private function _checkMaterielExistsInDatabase($role, $id, $designation=NULL, $num_inventaire=NULL) {} private function _checkMaterielViewIsOK($role, $id, $designation=NULL, $num_inventaire=NULL) {} - private function _checkNbMaterielInIndexViewIs(bool $COPIED, $role, $nbmat, $designation=NULL, $num_inventaire=NULL) { + private function _checkNbMaterielInIndexViewIs($COPIED, $role, $nbmat, $designation=NULL, $num_inventaire=NULL) { $this->get('/materiels/index'); if (! $COPIED) $this->assertResponseNotContains("Liste des matériels (".$nbmat.")", $role); @@ -650,7 +650,7 @@ class MaterielsControllerTest extends General { // 1) RULE MATERIEL.COPY.1 : // Copie d'un matos (CREATED) à l'IDENTIQUE (tel quel sans rien changer, // sauf ce qui changera automatiquement: id, numlab) - $this->_testMatCopy(1, TRUE, $role, 1, [], 'TEST-2014-0001'); + $this->_testMatCopy(1, true, $role, 1, [], 'TEST-2014-0001'); // 2) RULE MATERIEL.COPY.2 : // Copie d'un matos (CREATED) en changeant quelques données @@ -669,7 +669,7 @@ class MaterielsControllerTest extends General { //'email_responsable' => 'Jacques.Utilisateur@irap.omp.eu', //'fournisseur_id' => 2 ]; - $this->_testMatCopy(2, TRUE, $role, 1, $modified_data, 'TEST-2016-0015'); + $this->_testMatCopy(2, true, $role, 1, $modified_data, 'TEST-2016-0015'); // 3) RULE MATERIEL.COPY.3 : // Impossible de copier un matos de statut superieur à CREATED (sauf pour SUPERADMIN) @@ -693,7 +693,7 @@ class MaterielsControllerTest extends General { // AVANT add // USER ne voit pas les materiels ARCHIVED $nbmat = $this->USER_IS_ADMIN_AT_LEAST() ? 7 : 6; - $this->_checkNbMaterielInIndexViewIs(TRUE, $role, $nbmat); + $this->_checkNbMaterielInIndexViewIs(true, $role, $nbmat); /* $this->get('/materiels/index'); // USER ne voit pas les materiels ARCHIVED -- libgit2 0.21.2