1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-10-23 01:26:11 +02:00

Fix some issues, bump phpunit version

This commit is contained in:
Jordi Boggiano
2022-02-26 15:09:41 +01:00
parent 22c8b19358
commit 400effdd45
45 changed files with 602 additions and 774 deletions

View File

@@ -34,7 +34,7 @@ class FlowdockFormatterTest extends TestCase
];
$formatted = $formatter->format($record);
$this->assertEquals($expected, $formatted['flowdock']);
$this->assertEquals($expected, $formatted);
}
/**
@@ -49,7 +49,7 @@ class FlowdockFormatterTest extends TestCase
];
$formatted = $formatter->formatBatch($records);
$this->assertArrayHasKey('flowdock', $formatted[0]);
$this->assertArrayHasKey('flowdock', $formatted[1]);
$this->assertArrayHasKey('from_address', $formatted[0]);
$this->assertArrayHasKey('from_address', $formatted[1]);
}
}