mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-20 01:56:12 +02:00

[BUGFIX] Fix a casing typo in a test name

This commit is contained in:
Oliver Klee 2015-10-26 22:04:42 +01:00
parent f529e4a688
commit 12c69e81b0

View file

@ -105,7 +105,7 @@ class FileUtilityTest extends \TYPO3\CMS\Core\Tests\UnitTestCase {
/**
* @test
*/
public function concatenateWithTWoFileCopiesContentsFromBothFilesInOrderToTargetFile() {
public function concatenateWithTwoFileCopiesContentsFromBothFilesInOrderToTargetFile() {
$contents1 = 'Hello ';
$sourceFileName1 = vfsStream::url('home/source1.txt');
file_put_contents($sourceFileName1, $contents1);