Skip to content

Commit 5245a0e

Browse files
committed
Fix datetime format in ElasticsearchFormatterTest
1 parent 3f67195 commit 5245a0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Monolog/Formatter/ElasticsearchFormatterTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function testFormat()
3434

3535
// Expected values
3636
$expected = $msg->toArray();
37-
$expected['datetime'] = '1970-01-01T00:00:00+0000';
37+
$expected['datetime'] = '1970-01-01T00:00:00+00:00';
3838
$expected['context'] = [
3939
'class' => ['stdClass' => []],
4040
'foo' => 7,

0 commit comments

Comments
 (0)