Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
TrevorPilley committed Apr 15, 2024
1 parent 6dc535c commit 8faaf6b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/PhoneNumbers/CountryInfo_Europe.cs
Original file line number Diff line number Diff line change
Expand Up @@ -467,6 +467,7 @@ public partial class CountryInfo
/// </summary>
public static CountryInfo NorthMacedonia { get; } = new()
{
AllowsLocalGeographicDialling = true,
CallingCode = "389",
Continent = Europe,
Iso3166Code = "MK",
Expand Down
2 changes: 1 addition & 1 deletion test/PhoneNumbers.Tests/CountryInfo_Europe_Tests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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<ComplexPhoneNumberFormatProvider>(countryInfo.FormatProvider);
Expand Down

0 comments on commit 8faaf6b

Please sign in to comment.