rename testTxtBlacklist to txtBlacklist

This commit is contained in:
Georg Ehrke 2013-09-27 11:33:37 +02:00
parent 1b13101096
commit 4e9296a484
1 changed files with 3 additions and 3 deletions

View File

@ -92,7 +92,7 @@ class Preview extends \PHPUnit_Framework_TestCase {
$this->assertEquals($image->height(), $maxY);
}
public function testTxtBlacklist() {
public function txtBlacklist() {
$txt = 'random text file';
$ics = file_get_contents(__DIR__ . '/../data/testcal.ics');
$vcf = file_get_contents(__DIR__ . '/../data/testcontact.vcf');
@ -105,7 +105,7 @@ class Preview extends \PHPUnit_Framework_TestCase {
}
/**
* @dataProvider testTxtBlacklist
* @dataProvider txtBlacklist
*/
public function testIsTransparent($test, $data, $expectedResult) {
$user = $this->initFS();
@ -146,4 +146,4 @@ class Preview extends \PHPUnit_Framework_TestCase {
return $user;
}
}
}