Skip to content

Commit

Permalink
correct fixture name
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorb1 committed Nov 15, 2024
1 parent ee8e8ad commit 443561a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/results/test_results_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -1490,11 +1490,13 @@ def test_df_empty_discount_rate(self, region, year, discount_rate_empty):
with raises(ValueError):
discount_factor(regions, years, discount_rate_empty, 1.0)

def test_df_two_regions(self, region_multiple, year, discount_rate_multiple):
def test_df_two_regions(
self, region_multiple, year, discount_rate_multiple_regions
):

regions = region_multiple["VALUE"].to_list()
years = year["VALUE"].to_list()
actual = discount_factor(regions, years, discount_rate_multiple, 0.0)
actual = discount_factor(regions, years, discount_rate_multiple_regions, 0.0)

expected = pd.DataFrame(
data=[
Expand Down

0 comments on commit 443561a

Please sign in to comment.