From 508b9d14437eff70ead94760ff745474334c7f3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20W=C3=BCrth?= <ravage@bluewin.ch> Date: Tue, 19 May 2015 15:06:12 +0200 Subject: [PATCH] Rename test methods after notBlank change Was a left-over from #6579 --- lib/Cake/Test/Case/Utility/ValidationTest.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/Cake/Test/Case/Utility/ValidationTest.php b/lib/Cake/Test/Case/Utility/ValidationTest.php index 332b1b10b..118f63183 100644 --- a/lib/Cake/Test/Case/Utility/ValidationTest.php +++ b/lib/Cake/Test/Case/Utility/ValidationTest.php @@ -124,11 +124,11 @@ class ValidationTest extends CakeTestCase { } /** - * testNotEmpty method + * Test notBlank method * * @return void */ - public function testNotEmpty() { + public function testNotBlank() { $this->assertTrue(Validation::notBlank('abcdefg')); $this->assertTrue(Validation::notBlank('fasdf ')); $this->assertTrue(Validation::notBlank('fooo' . chr(243) . 'blabla')); @@ -141,11 +141,11 @@ class ValidationTest extends CakeTestCase { } /** - * testNotEmptyISO88591Encoding method + * Test notBlank method with ISO88591 encoding * * @return void */ - public function testNotEmptyISO88591AppEncoding() { + public function testNotBlankISO88591AppEncoding() { Configure::write('App.encoding', 'ISO-8859-1'); $this->assertTrue(Validation::notBlank('abcdefg')); $this->assertTrue(Validation::notBlank('fasdf '));