diff --git a/tests/Support/SupportPhoneTest.php b/tests/Support/SupportPhoneTest.php index 237663d6539..9d51fc1de6a 100644 --- a/tests/Support/SupportPhoneTest.php +++ b/tests/Support/SupportPhoneTest.php @@ -30,7 +30,7 @@ public function test_invalid_country_returns_null() public function test_can_format_number() { $phoneNumber = PhoneNumber::of('+201200954866'); - $this->assertEquals('+20 120 095 4866', $phoneNumber->formatInternational()); + $this->assertEquals('+20 12 00954866', $phoneNumber->formatInternational()); $this->assertEquals('012 00954866', $phoneNumber->formatNational()); $this->assertEquals('+201200954866', $phoneNumber->formatE164()); }