Skip to content

Commit

Permalink
Add Kosovo to list of currencies
Browse files Browse the repository at this point in the history
  • Loading branch information
markbrough committed Nov 8, 2023
1 parent 66a10a7 commit 6308a53
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test_one_currency.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def test_currency_list_eurozone_countries(self, countries_currencies):
Check that the list of Eurozone countries/currencies is as expected.
"""
countries = [k for k, v in countries_currencies.items() if v == 'EUR']
assert countries == ['AX', 'AD', 'MC', 'ME', 'U2']
# Aland Islands, Andorra, Monaco, Montenegro all use EUR but are not members
assert len([v for k, v in countries_currencies.items() if v == 'EUR']) == 5
assert countries == ['AX', 'AD', 'XK', 'MC', 'ME', 'U2']
# Aland Islands, Andorra, Kosovo, Monaco, Montenegro all use EUR but are not members
assert len([v for k, v in countries_currencies.items() if v == 'EUR']) == 6

0 comments on commit 6308a53

Please sign in to comment.