From 0c142594bec473bbd51af26d6d148b8df5fe08d9 Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Mon, 3 Dec 2012 11:14:36 +0100 Subject: [PATCH] Fix: try invert test --- test/phpunit/CommandeFournisseurTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/phpunit/CommandeFournisseurTest.php b/test/phpunit/CommandeFournisseurTest.php index 560f1d0b272..26704c9a136 100644 --- a/test/phpunit/CommandeFournisseurTest.php +++ b/test/phpunit/CommandeFournisseurTest.php @@ -134,7 +134,7 @@ class CommandeFournisseurTest extends PHPUnit_Framework_TestCase print __METHOD__." result=".$result."\n"; //$this->assertLessThan($result, 0); - $this->assertGreaterThanOrEqual(-1, $result); // for avoid error if supplier price not exist + $this->assertLessThanOrEqual(-1, $result); // for avoid error if supplier price not exist return $result; }