2
0
forked from Wavyzz/dolibarr

Qual: Spelling outside htdocs (#27448)

* Qual: Spelling outside htdocs

# Qual: Fix spelling of files not in the htdocs subdirectory.

Highlight:
- Change in email test from unvalid to invalid that should give the same test result.

* Update Dolibarr-soapui-project.xml

---------

Co-authored-by: Laurent Destailleur <eldy@destailleur.fr>
This commit is contained in:
MDW
2024-01-12 17:14:13 +01:00
committed by GitHub
parent 4cf62b9711
commit 42a0d05b63
51 changed files with 104 additions and 104 deletions

View File

@@ -170,7 +170,7 @@ class Functions2LibTest extends PHPUnit\Framework\TestCase
*/
public function testIsValidMailDomain()
{
$mail = 'bidon@unvalid.unvalid';
$mail = 'bidon@invalid.invalid';
$result = isValidMailDomain($mail);
$this->assertEquals(0, $result, 'Email isValidMailDomain('.$mail.') should return 0 (not valid) but returned '.$result);