Skip to content

Commit

Permalink
PR suggestion
Browse files Browse the repository at this point in the history
Co-authored-by: Arkadii Yakovets <[email protected]>
  • Loading branch information
KJhellico and arkid15r authored Dec 6, 2024
1 parent 9f14895 commit d28eb1c
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,10 +223,8 @@ def test_list_supported_countries(self):
def test_list_supported_financial(self):
supported_financial = list_supported_financial(include_aliases=False)

self.assertIn("BVMF", supported_financial)
self.assertIn("IFEU", supported_financial)
self.assertIn("XECB", supported_financial)
self.assertIn("XNYS", supported_financial)
for code in ("BVMF", "IFEU", "XECB", "XNYS"):
self.assertIn(code, supported_financial)

xnys = supported_financial["XNYS"]
self.assertIsInstance(xnys, list)
Expand Down

0 comments on commit d28eb1c

Please sign in to comment.