Skip to content

Commit

Permalink
Fix: Use delete function instead of remove
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Feb 6, 2011
1 parent cd51211 commit c9cd90b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/phpunit/CategorieTest.php
Expand Up @@ -235,7 +235,7 @@ public function testCategorieDelete($id)

$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);
Expand Down

0 comments on commit c9cd90b

Please sign in to comment.