From f54dce93aa237f89918939dd5d8018c8e3b6ee5b Mon Sep 17 00:00:00 2001 From: "Jonathan H. Wage" Date: Tue, 25 May 2010 18:22:42 -0400 Subject: [PATCH] Fixing failing test introduced in last commit. --- tests/Doctrine/Tests/ORM/Query/ExprTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Doctrine/Tests/ORM/Query/ExprTest.php b/tests/Doctrine/Tests/ORM/Query/ExprTest.php index 5bf5b06b5..032411761 100644 --- a/tests/Doctrine/Tests/ORM/Query/ExprTest.php +++ b/tests/Doctrine/Tests/ORM/Query/ExprTest.php @@ -191,7 +191,7 @@ class ExprTest extends \Doctrine\Tests\OrmTestCase */ public function testSubstringExprAcceptsTwoArguments() { - $this->assertEquals('SUBSTRING(a.title, 0)', (string) $this->_expr->substring('a.title', 5)); + $this->assertEquals('SUBSTRING(a.title, 5)', (string) $this->_expr->substring('a.title', 5)); } public function testLowerExpr()