Fix: Use delete function instead of remove

This commit is contained in:
Laurent Destailleur 2011-02-06 10:58:42 +00:00
parent cd51211292
commit c9cd90b19e

View File

@ -235,7 +235,7 @@ class CategorieTest extends PHPUnit_Framework_TestCase
$localobject=new Categorie($this->savdb);
$result=$localobject->fetch($id);
$result=$localobject->remove($id);
$result=$localobject->delete($id);
print __METHOD__." id=".$id." result=".$result."\n";
$this->assertLessThan($result, 0);