Skip to content

Commit

Permalink
[TASK] Make CS fixer happy
Browse files Browse the repository at this point in the history
  • Loading branch information
einpraegsam committed Oct 30, 2024
1 parent 9349607 commit 89ca81f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Tests/Unit/Utility/EmailUtilityTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function testExtendEmailReceiverArray(array $emails, ?string $name, array
} else {
$result = EmailUtility::extendEmailReceiverArray($emails);
}
$this->assertSame($expectedResult, $result);
self::assertSame($expectedResult, $result);
}

/**
Expand All @@ -64,9 +64,9 @@ public function testExtendEmailReceiverArray(array $emails, ?string $name, array
*/
public function testGetDomainFromEmail(): void
{
$this->assertSame('in2code.de', EmailUtility::getDomainFromEmail('[email protected]'));
$this->assertSame('fuz.bayern', EmailUtility::getDomainFromEmail('[email protected]'));
$this->assertSame('', EmailUtility::getDomainFromEmail(''));
$this->assertSame('', EmailUtility::getDomainFromEmail('foobar'));
self::assertSame('in2code.de', EmailUtility::getDomainFromEmail('[email protected]'));
self::assertSame('fuz.bayern', EmailUtility::getDomainFromEmail('[email protected]'));
self::assertSame('', EmailUtility::getDomainFromEmail(''));
self::assertSame('', EmailUtility::getDomainFromEmail('foobar'));
}
}

0 comments on commit 89ca81f

Please sign in to comment.