From 6422e438534677c70591ed689563c64dede8962c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Slischka?= Date: Tue, 25 May 2021 20:16:10 +0200 Subject: [PATCH] Fixed test --- tests/EmailaddressTest.phpt | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/EmailaddressTest.phpt b/tests/EmailaddressTest.phpt index 4710c2a..a49d4a3 100644 --- a/tests/EmailaddressTest.phpt +++ b/tests/EmailaddressTest.phpt @@ -31,7 +31,6 @@ final class EmailaddressTest extends TestCase ]; foreach ($invalidValues as $invalidValue) { - echo 'Testing: ' . $invalidValue . \PHP_EOL; Assert::throws( static function () use ($invalidValue): void { Emailaddress::from($invalidValue); @@ -42,7 +41,6 @@ final class EmailaddressTest extends TestCase } foreach ($invalidValues as $invalidValue) { - echo 'Testing: ' . $invalidValue . \PHP_EOL; Assert::throws( static function () use ($invalidValue): void { Emailaddress::extract(['email' => $invalidValue], 'email'); @@ -62,7 +60,6 @@ final class EmailaddressTest extends TestCase ]; foreach ($validValues as $validValue) { - echo 'Testing: ' . $validValue . \PHP_EOL; $emailaddress = Emailaddress::from($validValue); Assert::type(Emailaddress::class, $emailaddress); }