Fix class name case
This commit is contained in:
parent
fd4445f4aa
commit
31daed0048
|
@ -10,11 +10,7 @@ class HTMLTest extends PHPUnit_Framework_TestCase
|
|||
public function testCsvWithAngleBracket()
|
||||
{
|
||||
$filename = __DIR__ . '/../../data/Reader/HTML/csv_with_angle_bracket.csv';
|
||||
$this->assertFalse($this->getInstance()->canRead($filename));
|
||||
}
|
||||
|
||||
private function getInstance()
|
||||
{
|
||||
return new HTML();
|
||||
$reader = new Html();
|
||||
$this->assertFalse($reader->canRead($filename));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue