From 68d754efaba797679ca01879f2313efa58f7b47c Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Sat, 11 Nov 2023 13:34:23 +0200 Subject: [PATCH] fix test --- tests/integration/Espo/Account/CreateTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/Espo/Account/CreateTest.php b/tests/integration/Espo/Account/CreateTest.php index 29315d152c..f5a3d40bba 100644 --- a/tests/integration/Espo/Account/CreateTest.php +++ b/tests/integration/Espo/Account/CreateTest.php @@ -48,7 +48,7 @@ class CreateTest extends \tests\integration\Core\BaseTestCase $entity = $service->create((object) [ 'name' => 'Test Account', 'emailAddress' => 'test@tester.com', - 'phoneNumber' => '123-456-789', + 'phoneNumber' => '+14333633333', ], CreateParams::create()); $this->assertInstanceOf('Espo\\ORM\\Entity', $entity);