Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TrevorPilley committed Apr 15, 2024
1 parent ad51ed8 commit 5eb0ccb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/PhoneNumbers/CountryInfo_Europe.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public partial class CountryInfo
Iso3166Code = "BA",
Name = "Bosnia and Herzegovina",
NdcLengths = new ReadOnlyCollection<int>([4, 3, 2]),
NsnLengths = new ReadOnlyCollection<int>([8, 9]),
NsnLengths = new ReadOnlyCollection<int>([6, 8, 9]),
TrunkPrefix = "0",
};

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 @@ -79,7 +79,7 @@ public void CountryInfo_BosniaAndHerzegovina()
Assert.Equal("BA", countryInfo.Iso3166Code);
Assert.Equal("Bosnia and Herzegovina", countryInfo.Name);
Assert.Equal(new[] { 4, 3, 2 }, countryInfo.NdcLengths);
Assert.Equal(new[] { 8, 9 }, countryInfo.NsnLengths);
Assert.Equal(new[] { 6, 8, 9 }, countryInfo.NsnLengths);
Assert.False(countryInfo.SharesCallingCode);
Assert.Equal("0", countryInfo.TrunkPrefix);
}
Expand Down

0 comments on commit 5eb0ccb

Please sign in to comment.