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()
|
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();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue