From f9222a083a4e09e5ebde5189e389de358206f973 Mon Sep 17 00:00:00 2001 From: Antonio Ramirez Date: Tue, 21 May 2013 08:42:38 +0200 Subject: [PATCH] fix failing test --- tests/unit/framework/helpers/InflectorTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/framework/helpers/InflectorTest.php b/tests/unit/framework/helpers/InflectorTest.php index 36700f4..859d8bf 100644 --- a/tests/unit/framework/helpers/InflectorTest.php +++ b/tests/unit/framework/helpers/InflectorTest.php @@ -39,7 +39,7 @@ class InflectorTest extends TestCase public function testUnderscore() { - $this->assertEquals("me_my_self_and_i", Inflector::underscore('Me my self and I')); + $this->assertEquals("me_my_self_and_i", Inflector::underscore('MeMySelfAndI')); } public function testHumanize()