diff --git a/tests/e2e/Services/GraphQL/MessagingTest.php b/tests/e2e/Services/GraphQL/MessagingTest.php index d8aa08ce71..18fcf71f0c 100644 --- a/tests/e2e/Services/GraphQL/MessagingTest.php +++ b/tests/e2e/Services/GraphQL/MessagingTest.php @@ -138,8 +138,8 @@ class MessagingTest extends Scope 'Telesign' => [ 'providerId' => $providers[3]['_id'], 'name' => 'Telesign2', - 'username' => 'my-username', - 'password' => 'my-password', + 'customerId' => 'my-username', + 'apiKey' => 'my-password', ], 'Textmagic' => [ 'providerId' => $providers[4]['_id'], diff --git a/tests/e2e/Services/Messaging/MessagingBase.php b/tests/e2e/Services/Messaging/MessagingBase.php index 1255f99fbf..4f29176327 100644 --- a/tests/e2e/Services/Messaging/MessagingBase.php +++ b/tests/e2e/Services/Messaging/MessagingBase.php @@ -51,8 +51,8 @@ trait MessagingBase 'telesign' => [ 'providerId' => ID::unique(), 'name' => 'Telesign1', - 'username' => 'my-username', - 'password' => 'my-password', + 'customerId' => 'my-username', + 'apiKey' => 'my-password', 'from' => '+123456789', ], 'textmagic' => [ @@ -142,8 +142,8 @@ trait MessagingBase ], 'telesign' => [ 'name' => 'Telesign2', - 'username' => 'my-username', - 'password' => 'my-password', + 'customerId' => 'my-username', + 'apiKey' => 'my-password', ], 'textmagic' => [ 'name' => 'Textmagic2',