Skip to content

Commit

Permalink
style: fix regions test styling
Browse files Browse the repository at this point in the history
  • Loading branch information
mdtanker committed Jun 14, 2024
1 parent 77ea6f8 commit a8d9628
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_regions.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

regions_dict = regions.get_regions()
names = list(regions_dict.keys())
regions = list(regions_dict.values())
region_values = list(regions_dict.values())


def check_region_valid(region):
Expand All @@ -31,6 +31,6 @@ def check_region_valid(region):
assert region[2] != region[3]


@pytest.mark.parametrize(("testname", "region"), zip(names, regions))
@pytest.mark.parametrize(("testname", "region"), zip(names, region_values))
def test_regions(testname, region): # noqa: ARG001
check_region_valid(region)

0 comments on commit a8d9628

Please sign in to comment.