Fix wording of "Estimated power production" sensors in forecast_solar (#145201)

This commit is contained in:
Norbert Rittel 2025-05-19 20:02:37 +02:00 committed by GitHub
parent 37fe25cfdc
commit 5031ffe767
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions

View File

@ -54,13 +54,13 @@
"name": "Estimated power production - now" "name": "Estimated power production - now"
}, },
"power_production_next_hour": { "power_production_next_hour": {
"name": "Estimated power production - next hour" "name": "Estimated power production - in 1 hour"
}, },
"power_production_next_12hours": { "power_production_next_12hours": {
"name": "Estimated power production - next 12 hours" "name": "Estimated power production - in 12 hours"
}, },
"power_production_next_24hours": { "power_production_next_24hours": {
"name": "Estimated power production - next 24 hours" "name": "Estimated power production - in 24 hours"
}, },
"energy_current_hour": { "energy_current_hour": {
"name": "Estimated energy production - this hour" "name": "Estimated energy production - this hour"

View File

@ -194,17 +194,17 @@ async def test_disabled_by_default(
[ [
( (
"power_production_next_12hours", "power_production_next_12hours",
"Estimated power production - next 12 hours", "Estimated power production - in 12 hours",
"600000", "600000",
), ),
( (
"power_production_next_24hours", "power_production_next_24hours",
"Estimated power production - next 24 hours", "Estimated power production - in 24 hours",
"700000", "700000",
), ),
( (
"power_production_next_hour", "power_production_next_hour",
"Estimated power production - next hour", "Estimated power production - in 1 hour",
"400000", "400000",
), ),
], ],