Skip to content
Snippets Groups Projects
Commit 7aa295b4 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: Use delete function instead of remove

parent f4d1d350
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment