Skip to content

Commit

Permalink
Update travis test
Browse files Browse the repository at this point in the history
  • Loading branch information
aspangaro committed Nov 20, 2018
1 parent cf0c4a5 commit 52efbfa
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/phpunit/AdherentTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,7 @@ public function testAdherentUpdate(Adherent $localobject)
//$localobject->note_public='New note public after update';
$localobject->lastname='New name';
$localobject->firstname='New firstname';
$localobject->gender='man';
$localobject->address='New address';
$localobject->zip='New zip';
$localobject->town='New town';
Expand Down Expand Up @@ -284,6 +285,7 @@ public function testAdherentUpdate(Adherent $localobject)
$this->assertEquals($localobject->note_public, $newobject->note_public);
$this->assertEquals($localobject->lastname, $newobject->lastname);
$this->assertEquals($localobject->firstname, $newobject->firstname);
$this->assertEquals($localobject->gender, $newobject->gender);
$this->assertEquals($localobject->address, $newobject->address);
$this->assertEquals($localobject->zip, $newobject->zip);
$this->assertEquals($localobject->town, $newobject->town);
Expand Down

0 comments on commit 52efbfa

Please sign in to comment.