From dc75038b0d2a4e588fdbb6491852cb3e97be109a Mon Sep 17 00:00:00 2001 From: Appointmind Date: Sat, 17 Feb 2018 13:31:45 +0100 Subject: [PATCH] Update ValidatorTest.php The method name testValidateEmailFullName() seemed to be inconsistent with the purpose and the rest of the method names. --- tests/Utils/ValidatorTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Utils/ValidatorTest.php b/tests/Utils/ValidatorTest.php index 3dec80fe2..99ee1aa05 100644 --- a/tests/Utils/ValidatorTest.php +++ b/tests/Utils/ValidatorTest.php @@ -95,7 +95,7 @@ public function testValidateFullName() $this->assertSame($test, $this->object->validateFullName($test)); } - public function testValidateEmailFullName() + public function testValidateFullNameEmpty() { $this->expectException('Exception'); $this->expectExceptionMessage('The full name can not be empty.');