Skip to content

Commit

Permalink
Fix - Fixed test utils type error
Browse files Browse the repository at this point in the history
  • Loading branch information
davidusb-geek committed Jan 4, 2024
1 parent 69b7d10 commit 7eb7fc0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## [0.6.2] - Unreleased
## [0.6.2] - 2024-01-04
### Improvement
- Added option to pass additional weight for battery usage
- Improved coverage
Expand Down
2 changes: 1 addition & 1 deletion tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def test_treat_runtimeparams(self):
self.assertTrue(params['passed_data']['publish_prefix'] == 'emhass_')
self.assertTrue(params['passed_data']['custom_pv_forecast_id'] == 'my_custom_pv_forecast_id')
self.assertTrue(params['passed_data']['custom_load_forecast_id'] == 'my_custom_load_forecast_id')
self.assertTrue(params['passed_data']['custom_batt_forecast_id'] == 'my_custom_battforecast_id')
self.assertTrue(params['passed_data']['custom_batt_forecast_id'] == 'my_custom_batt_forecast_id')
self.assertTrue(params['passed_data']['custom_batt_soc_forecast_id'] == 'my_custom_batt_soc_forecast_id')
self.assertTrue(params['passed_data']['custom_grid_forecast_id'] == 'my_custom_grid_forecast_id')
self.assertTrue(params['passed_data']['custom_cost_fun_id'] == 'my_custom_cost_fun_id')
Expand Down

0 comments on commit 7eb7fc0

Please sign in to comment.