Skip to content

Commit

Permalink
Assert correct total now all are implemented
Browse files Browse the repository at this point in the history
  • Loading branch information
TrevorPilley committed Sep 22, 2023
1 parent 1039677 commit cc4a29a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/PhoneNumbers.Tests/ParseOptionsTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public void AllowEuropeanUnionCountries()
parseOptions.Countries.Clear();
parseOptions.AllowEuropeanUnionCountries();

Assert.True(parseOptions.Countries.Count > 0);
Assert.Equal(27, parseOptions.Countries.Count);
Assert.All(parseOptions.Countries, x => Assert.True(x.IsEuropeanUnionMember));
}

Expand Down

0 comments on commit cc4a29a

Please sign in to comment.