Skip to content

Commit

Permalink
fix typos in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredthomas68 committed Oct 26, 2024
1 parent 7fae20c commit 2e897bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class SystemCosts(FinancialData):

@define
class Revenue(FinancialData):
ppa_price_input: float = field(default=None) # cents/kWh
ppa_price_input: list = field(default=None) # cents/kWh
ppa_escalation: float = field(default=1) # percent (%)
ppa_multiplier_model: float = field(default=None)
dispatch_factors_ts: Sequence = field(default=(0,))
Expand Down
2 changes: 1 addition & 1 deletion tests/hopp/test_detailed_pv_plant.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def test_custom_financial(site):
config = DetailedPVConfig.from_dict(
{
"system_capacity_kw": 100,
"fin_model": CustomFinancialModel(DEFAULT_FIN_CONFIG),
"fin_model": CustomFinancialModel(DEFAULT_FIN_CONFIG, name="Test"),
}
)
pv_plant = DetailedPVPlant(site=site, config=config)
Expand Down

0 comments on commit 2e897bd

Please sign in to comment.