Skip to content

Commit 0f7d805

Browse files
#28570: createCustomer does not match validation requirements (static test fix)
1 parent b5208cd commit 0f7d805

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

dev/tests/api-functional/testsuite/Magento/GraphQl/Customer/CreateCustomerTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,9 @@ public function testCreateCustomerSubscribed()
343343
public function testCreateCustomerIfCustomerWithProvidedEmailAlreadyExists()
344344
{
345345
$this->expectException(\Exception::class);
346-
$this->expectExceptionMessage('A customer with the same email address already exists in an associated website.');
346+
$this->expectExceptionMessage(
347+
'A customer with the same email address already exists in an associated website.'
348+
);
347349

348350
$existedEmail = '[email protected]';
349351
$password = 'test123#';

0 commit comments

Comments
 (0)