From 12c69e81b0420d9857679c076f0e218f6316f3ea Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Mon, 26 Oct 2015 22:04:42 +0100 Subject: [PATCH] [BUGFIX] Fix a casing typo in a test name --- Tests/Functional/Utility/FileUtilityTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/Functional/Utility/FileUtilityTest.php b/Tests/Functional/Utility/FileUtilityTest.php index 16a187a..42d565c 100644 --- a/Tests/Functional/Utility/FileUtilityTest.php +++ b/Tests/Functional/Utility/FileUtilityTest.php @@ -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);