From 2d2d6f7fadde633cbb7540837758b4bb4ec3ce54 Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Wed, 10 Jan 2024 13:27:55 +0200 Subject: [PATCH] fix test --- tests/integration/Espo/Record/SanitizeTest.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/integration/Espo/Record/SanitizeTest.php b/tests/integration/Espo/Record/SanitizeTest.php index cd5b8d63a5..c3f59fcc4d 100644 --- a/tests/integration/Espo/Record/SanitizeTest.php +++ b/tests/integration/Espo/Record/SanitizeTest.php @@ -69,6 +69,9 @@ class SanitizeTest extends BaseTestCase $numbers = $account->getPhoneNumberGroup()->getNumberList(); $this->assertCount(2, $numbers); + + sort($numbers); + $this->assertEquals('+380904443322', $numbers[0]); $this->assertEquals('+380904443333', $numbers[1]); }