Browse Source

Fix casing in method call

ravage84 2 years ago
parent
commit
d9b06503d7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/Validation/ValidatorTest.php

+ 1 - 1
tests/TestCase/Validation/ValidatorTest.php

@@ -1239,7 +1239,7 @@ class ValidatorTest extends TestCase
     public function testNotEmptyDateTimeUpdate(): void
     {
         $validator = new Validator();
-        $validator->notEmptyDatetime('published', 'message', 'update');
+        $validator->notEmptyDateTime('published', 'message', 'update');
         $this->assertTrue($validator->isEmptyAllowed('published', true));
         $this->assertFalse($validator->isEmptyAllowed('published', false));