Remove non-existing parameter from the API call

This commit is contained in:
David Garcia 2019-08-10 00:16:36 +01:00
parent 6d50e0776f
commit ed25b2e7e1
No known key found for this signature in database
GPG Key ID: 5B833C2A14BD9A97

View File

@ -35,7 +35,7 @@ class EmailValidationTest extends TestCase
->with('/v4/address/validate', $params)
->willReturn(new Response());
$api->validate($params['address'], $params['mailbox_verification']);
$api->validate($params['address']);
}
public function testParseEmail()