From c9cd90b19e5e838e74eb9b66f718e0444ccfd919 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sun, 6 Feb 2011 10:58:42 +0000 Subject: [PATCH] Fix: Use delete function instead of remove --- test/phpunit/CategorieTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/phpunit/CategorieTest.php b/test/phpunit/CategorieTest.php index 8ac54d0b953..151bac89e4b 100755 --- a/test/phpunit/CategorieTest.php +++ b/test/phpunit/CategorieTest.php @@ -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);