1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-05 04:37:38 +02:00

Fix class name

This commit is contained in:
Avtandil Kikabidze
2018-04-07 03:56:17 +04:00
parent 1e4b86d228
commit ca326c4831

View File

@@ -63,7 +63,7 @@ class ElasticSearchFormatterTest extends \PHPUnit\Framework\TestCase
*/ */
public function testGetters() public function testGetters()
{ {
$formatter = new ElasticaFormatter('my_index', 'doc_type'); $formatter = new ElasticSearchFormatter('my_index', 'doc_type');
$this->assertEquals('my_index', $formatter->getIndex()); $this->assertEquals('my_index', $formatter->getIndex());
$this->assertEquals('doc_type', $formatter->getType()); $this->assertEquals('doc_type', $formatter->getType());
} }