Skip to content

Commit

Permalink
Fix cookie magic Time property format
Browse files Browse the repository at this point in the history
  • Loading branch information
finwe committed Mar 15, 2019
1 parent f76b254 commit 61fd1c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Jyxo/Time/TimeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ public function testMagicGet()
$this->assertEquals('2009-10-10T00:00:00+0700', $time->sql);
$this->assertEquals('Sat, 10 Oct 09 00:00:00 +0700', $time->email);
$this->assertEquals('2009-10-10T00:00:00+07:00', $time->web);
$this->assertEquals('Saturday, 10-Oct-2009 00:00:00 GMT-7', $time->cookie);
$this->assertEquals('Saturday, 10-Oct-2009 00:00:00 +07', $time->cookie);
$this->assertEquals('Sat, 10 Oct 2009 00:00:00 +0700', $time->rss);
$this->assertEquals('1255107600', $time->unix);
$this->assertEquals('Fri, 09 Oct 2009 17:00:00 GMT', $time->http);
Expand Down

0 comments on commit 61fd1c1

Please sign in to comment.