Fix class name case

This commit is contained in:
Adrien Crivelli 2017-08-02 23:13:08 +02:00
parent fd4445f4aa
commit 31daed0048
No known key found for this signature in database
GPG Key ID: B182FD79DC6DE92E
1 changed files with 2 additions and 6 deletions

View File

@ -10,11 +10,7 @@ class HTMLTest extends PHPUnit_Framework_TestCase
public function testCsvWithAngleBracket() public function testCsvWithAngleBracket()
{ {
$filename = __DIR__ . '/../../data/Reader/HTML/csv_with_angle_bracket.csv'; $filename = __DIR__ . '/../../data/Reader/HTML/csv_with_angle_bracket.csv';
$this->assertFalse($this->getInstance()->canRead($filename)); $reader = new Html();
} $this->assertFalse($reader->canRead($filename));
private function getInstance()
{
return new HTML();
} }
} }