Browse Source

Investigating travis weirdness

Jose Lorenzo Rodriguez 11 years ago
parent
commit
c00f5edec8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/I18n/TimeTest.php

+ 1 - 1
tests/TestCase/I18n/TimeTest.php

@@ -707,7 +707,7 @@ class TimeTest extends TestCase
         $time = Time::parseDate('13 foo 10 2013 12:54');
         $this->assertNull($time);
 
-        $time = Time::parseDate('13 Oct, 2013', 'dd MMM, y');
+        $time = Time::parseDate('13 10, 2013', 'dd m, y');
         $this->assertNotNull($time);
         $this->assertEquals('2013-10-13 00:00', $time->format('Y-m-d H:i'));
     }