diff --git a/tests/Unit/t3lib/cache/backend/class.t3lib_cache_backend_apcbackendTest.php b/tests/Unit/t3lib/cache/backend/class.t3lib_cache_backend_apcbackendTest.php index 0d509f870c347057f565ac267f7c995ab5ec0468..59a5dd1e098ac5daa4b9dde27bd12e00eb6bfc72 100644 --- a/tests/Unit/t3lib/cache/backend/class.t3lib_cache_backend_apcbackendTest.php +++ b/tests/Unit/t3lib/cache/backend/class.t3lib_cache_backend_apcbackendTest.php @@ -160,7 +160,7 @@ class t3lib_cache_backend_ApcBackendTest extends tx_phpunit_testcase { $backend = $this->setUpBackend(); $identifier = 'NonExistingIdentifier' . md5(uniqid(mt_rand(), TRUE)); $inCache = $backend->has($identifier); - $this->assertFalse($inCache,'"has" did not return FALSE when checking on non existing identifier'); + $this->assertFalse($inCache, '"has" did not return FALSE when checking on non existing identifier'); } /** @@ -171,7 +171,7 @@ class t3lib_cache_backend_ApcBackendTest extends tx_phpunit_testcase { $backend = $this->setUpBackend(); $identifier = 'NonExistingIdentifier' . md5(uniqid(mt_rand(), TRUE)); $inCache = $backend->remove($identifier); - $this->assertFalse($inCache,'"remove" did not return FALSE when checking on non existing identifier'); + $this->assertFalse($inCache, '"remove" did not return FALSE when checking on non existing identifier'); } /** diff --git a/tests/Unit/t3lib/cache/backend/class.t3lib_cache_backend_memcachedbackendTest.php b/tests/Unit/t3lib/cache/backend/class.t3lib_cache_backend_memcachedbackendTest.php index 7db5a5235858a88d9f7d0aa13aa937fd75798665..dc6c8911c8072320f91e1cf9f9b9b6f40414ca61 100644 --- a/tests/Unit/t3lib/cache/backend/class.t3lib_cache_backend_memcachedbackendTest.php +++ b/tests/Unit/t3lib/cache/backend/class.t3lib_cache_backend_memcachedbackendTest.php @@ -177,7 +177,7 @@ class t3lib_cache_backend_MemcachedBackendTest extends tx_phpunit_testcase { $backend = $this->setUpBackend(); $identifier = 'NonExistingIdentifier' . md5(uniqid(mt_rand(), TRUE)); $inCache = $backend->has($identifier); - $this->assertFalse($inCache,'"has" did not return FALSE when checking on non existing identifier'); + $this->assertFalse($inCache, '"has" did not return FALSE when checking on non existing identifier'); } /** @@ -188,7 +188,7 @@ class t3lib_cache_backend_MemcachedBackendTest extends tx_phpunit_testcase { $backend = $this->setUpBackend(); $identifier = 'NonExistingIdentifier' . md5(uniqid(mt_rand(), TRUE)); $inCache = $backend->remove($identifier); - $this->assertFalse($inCache,'"remove" did not return FALSE when checking on non existing identifier'); + $this->assertFalse($inCache, '"remove" did not return FALSE when checking on non existing identifier'); } /** diff --git a/tests/Unit/t3lib/class.t3lib_divTest.php b/tests/Unit/t3lib/class.t3lib_divTest.php index 8d15fb453b321d85471f822f8f1c74b6c59fc71a..1f661b25f85da088388cba16029ff49400e49632 100644 --- a/tests/Unit/t3lib/class.t3lib_divTest.php +++ b/tests/Unit/t3lib/class.t3lib_divTest.php @@ -656,9 +656,9 @@ class t3lib_divTest extends tx_phpunit_testcase { */ public function uniqueListUnifiesCommaSeparatedListDataProvider() { return array( - 'List without duplicates' => array('one,two,three','one,two,three'), - 'List with two consecutive duplicates' => array('one,two,two,three,three','one,two,three'), - 'List with non-consecutive duplicates' => array('one,two,three,two,three','one,two,three'), + 'List without duplicates' => array('one,two,three', 'one,two,three'), + 'List with two consecutive duplicates' => array('one,two,two,three,three', 'one,two,three'), + 'List with non-consecutive duplicates' => array('one,two,three,two,three', 'one,two,three'), 'One item list' => array('one', 'one'), 'Empty list' => array('', ''), ); diff --git a/tests/Unit/t3lib/formprotection/class.t3lib_formprotection_BackendFormProtectionTest.php b/tests/Unit/t3lib/formprotection/class.t3lib_formprotection_BackendFormProtectionTest.php index c4d588480843e1b58cf406a923bdf5840d98aec1..d76d8309e854d3ef4e9256d193eabe079e9daa4c 100644 --- a/tests/Unit/t3lib/formprotection/class.t3lib_formprotection_BackendFormProtectionTest.php +++ b/tests/Unit/t3lib/formprotection/class.t3lib_formprotection_BackendFormProtectionTest.php @@ -115,7 +115,7 @@ class t3lib_formprotection_BackendFormProtectionTest extends tx_phpunit_testcase ' public function getSessionData($key) {' . ' return $this->session[$key];' . ' }' . - ' public function setAndSaveSessionData($key,$data) {' . + ' public function setAndSaveSessionData($key, $data) {' . ' $this->session[$key] = $data;' . ' }' . '}'