From dec7f54ecb41b875f10611d66638f43e04067510 Mon Sep 17 00:00:00 2001 From: Mischa ter Smitten Date: Fri, 11 Nov 2016 21:43:43 +0100 Subject: [PATCH] Fixed typos --- lib/Cake/TestSuite/CakeTestCase.php | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/lib/Cake/TestSuite/CakeTestCase.php b/lib/Cake/TestSuite/CakeTestCase.php index ab04db6a7..94cf73e73 100644 --- a/lib/Cake/TestSuite/CakeTestCase.php +++ b/lib/Cake/TestSuite/CakeTestCase.php @@ -544,7 +544,7 @@ abstract class CakeTestCase extends PHPUnit_Framework_TestCase { * @param mixed $result * @param mixed $expected * @param string $message the text to display if the assertion is not correct - * @deprecated 3.0.0 This is a compatiblity wrapper for 1.x. It will be removed in 3.0 + * @deprecated 3.0.0 This is a compatibility wrapper for 1.x. It will be removed in 3.0 * @return void */ protected static function assertEqual($result, $expected, $message = '') { @@ -557,7 +557,7 @@ abstract class CakeTestCase extends PHPUnit_Framework_TestCase { * @param mixed $result * @param mixed $expected * @param string $message the text to display if the assertion is not correct - * @deprecated 3.0.0 This is a compatiblity wrapper for 1.x. It will be removed in 3.0 + * @deprecated 3.0.0 This is a compatibility wrapper for 1.x. It will be removed in 3.0 * @return void */ protected static function assertNotEqual($result, $expected, $message = '') { @@ -570,7 +570,7 @@ abstract class CakeTestCase extends PHPUnit_Framework_TestCase { * @param mixed $pattern a regular expression * @param string $string the text to be matched * @param string $message the text to display if the assertion is not correct - * @deprecated 3.0.0 This is a compatiblity wrapper for 1.x. It will be removed in 3.0 + * @deprecated 3.0.0 This is a compatibility wrapper for 1.x. It will be removed in 3.0 * @return void */ protected static function assertPattern($pattern, $string, $message = '') { @@ -583,7 +583,7 @@ abstract class CakeTestCase extends PHPUnit_Framework_TestCase { * @param mixed $actual * @param mixed $expected * @param string $message the text to display if the assertion is not correct - * @deprecated 3.0.0 This is a compatiblity wrapper for 1.x. It will be removed in 3.0 + * @deprecated 3.0.0 This is a compatibility wrapper for 1.x. It will be removed in 3.0 * @return void */ protected static function assertIdentical($actual, $expected, $message = '') { @@ -596,7 +596,7 @@ abstract class CakeTestCase extends PHPUnit_Framework_TestCase { * @param mixed $actual * @param mixed $expected * @param string $message the text to display if the assertion is not correct - * @deprecated 3.0.0 This is a compatiblity wrapper for 1.x. It will be removed in 3.0 + * @deprecated 3.0.0 This is a compatibility wrapper for 1.x. It will be removed in 3.0 * @return void */ protected static function assertNotIdentical($actual, $expected, $message = '') { @@ -609,7 +609,7 @@ abstract class CakeTestCase extends PHPUnit_Framework_TestCase { * @param mixed $pattern a regular expression * @param string $string the text to be matched * @param string $message the text to display if the assertion is not correct - * @deprecated 3.0.0 This is a compatiblity wrapper for 1.x. It will be removed in 3.0 + * @deprecated 3.0.0 This is a compatibility wrapper for 1.x. It will be removed in 3.0 * @return void */ protected static function assertNoPattern($pattern, $string, $message = '') { @@ -619,7 +619,7 @@ abstract class CakeTestCase extends PHPUnit_Framework_TestCase { /** * assert no errors * - * @deprecated 3.0.0 This is a compatiblity wrapper for 1.x. It will be removed in 3.0 + * @deprecated 3.0.0 This is a compatibility wrapper for 1.x. It will be removed in 3.0 * @return void */ protected function assertNoErrors() { @@ -630,7 +630,7 @@ abstract class CakeTestCase extends PHPUnit_Framework_TestCase { * * @param mixed $expected the name of the Exception or error * @param string $message the text to display if the assertion is not correct - * @deprecated 3.0.0 This is a compatiblity wrapper for 1.x. It will be removed in 3.0 + * @deprecated 3.0.0 This is a compatibility wrapper for 1.x. It will be removed in 3.0 * @return void */ protected function expectError($expected = false, $message = '') { @@ -658,7 +658,7 @@ abstract class CakeTestCase extends PHPUnit_Framework_TestCase { * @param mixed $first * @param mixed $second * @param string $message the text to display if the assertion is not correct - * @deprecated 3.0.0 This is a compatiblity wrapper for 1.x. It will be removed in 3.0 + * @deprecated 3.0.0 This is a compatibility wrapper for 1.x. It will be removed in 3.0 * @return void */ protected static function assertReference(&$first, &$second, $message = '') { @@ -671,7 +671,7 @@ abstract class CakeTestCase extends PHPUnit_Framework_TestCase { * @param string $object * @param string $type * @param string $message - * @deprecated 3.0.0 This is a compatiblity wrapper for 1.x. It will be removed in 3.0 + * @deprecated 3.0.0 This is a compatibility wrapper for 1.x. It will be removed in 3.0 * @return void */ protected static function assertIsA($object, $type, $message = '') {