diff --git a/cake/tests/cases/libs/view/helpers/text.test.php b/cake/tests/cases/libs/view/helpers/text.test.php index 139b5f46f..7be1c5029 100644 --- a/cake/tests/cases/libs/view/helpers/text.test.php +++ b/cake/tests/cases/libs/view/helpers/text.test.php @@ -402,13 +402,13 @@ class TextHelperTest extends CakeTestCase { $result = $this->Text->toList(array('Dusty', 'Lucky', 'Ned'), 'y'); $this->assertEqual($result, 'Dusty, Lucky y Ned'); - $result = $this->Text->toList(array( 1 => 'Dusty', 2 => 'Lucky', 3 => 'Ned'), 'y'); - $this->assertEqual($result, 'Dusty, Lucky y Ned'); + $result = $this->Text->toList(array( 1 => 'Dusty', 2 => 'Lucky', 3 => 'Ned'), 'y'); + $this->assertEqual($result, 'Dusty, Lucky y Ned'); - $result = $this->Text->toList(array( 1 => 'Dusty', 2 => 'Lucky', 3 => 'Ned'), 'and', ' + '); - $this->assertEqual($result, 'Dusty + Lucky and Ned'); + $result = $this->Text->toList(array( 1 => 'Dusty', 2 => 'Lucky', 3 => 'Ned'), 'and', ' + '); + $this->assertEqual($result, 'Dusty + Lucky and Ned'); - $result = $this->Text->toList(array( 'name1' => 'Dusty', 'name2' => 'Lucky')); - $this->assertEqual($result, 'Dusty and Lucky'); + $result = $this->Text->toList(array( 'name1' => 'Dusty', 'name2' => 'Lucky')); + $this->assertEqual($result, 'Dusty and Lucky'); } }