From 8faaf6b0ddd9ed3574eafb3aca8aec7810030090 Mon Sep 17 00:00:00 2001 From: Trevor Pilley Date: Mon, 15 Apr 2024 10:22:07 +0000 Subject: [PATCH] Update --- src/PhoneNumbers/CountryInfo_Europe.cs | 1 + test/PhoneNumbers.Tests/CountryInfo_Europe_Tests.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/PhoneNumbers/CountryInfo_Europe.cs b/src/PhoneNumbers/CountryInfo_Europe.cs index 408c08e5..2ebc3e45 100644 --- a/src/PhoneNumbers/CountryInfo_Europe.cs +++ b/src/PhoneNumbers/CountryInfo_Europe.cs @@ -467,6 +467,7 @@ public partial class CountryInfo /// public static CountryInfo NorthMacedonia { get; } = new() { + AllowsLocalGeographicDialling = true, CallingCode = "389", Continent = Europe, Iso3166Code = "MK", diff --git a/test/PhoneNumbers.Tests/CountryInfo_Europe_Tests.cs b/test/PhoneNumbers.Tests/CountryInfo_Europe_Tests.cs index d56d326d..27735aa8 100644 --- a/test/PhoneNumbers.Tests/CountryInfo_Europe_Tests.cs +++ b/test/PhoneNumbers.Tests/CountryInfo_Europe_Tests.cs @@ -611,7 +611,7 @@ public void CountryInfo_NorthMacedonia() var countryInfo = CountryInfo.NorthMacedonia; - Assert.False(countryInfo.AllowsLocalGeographicDialling); + Assert.True(countryInfo.AllowsLocalGeographicDialling); Assert.Equal("389", countryInfo.CallingCode); Assert.Equal(CountryInfo.Europe, countryInfo.Continent); Assert.IsType(countryInfo.FormatProvider);