Skip to content

Commit 443561a

Browse files
committed
correct fixture name
1 parent ee8e8ad commit 443561a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/results/test_results_package.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -1490,11 +1490,13 @@ def test_df_empty_discount_rate(self, region, year, discount_rate_empty):
14901490
with raises(ValueError):
14911491
discount_factor(regions, years, discount_rate_empty, 1.0)
14921492

1493-
def test_df_two_regions(self, region_multiple, year, discount_rate_multiple):
1493+
def test_df_two_regions(
1494+
self, region_multiple, year, discount_rate_multiple_regions
1495+
):
14941496

14951497
regions = region_multiple["VALUE"].to_list()
14961498
years = year["VALUE"].to_list()
1497-
actual = discount_factor(regions, years, discount_rate_multiple, 0.0)
1499+
actual = discount_factor(regions, years, discount_rate_multiple_regions, 0.0)
14981500

14991501
expected = pd.DataFrame(
15001502
data=[

0 commit comments

Comments
 (0)