Skip to content

Commit e1501d7

Browse files
authored
Bump pysuezV2 to 2.0.7 (home-assistant#149436)
1 parent be5109f commit e1501d7

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

homeassistant/components/suez_water/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
"iot_class": "cloud_polling",
99
"loggers": ["pysuez", "regex"],
1010
"quality_scale": "bronze",
11-
"requirements": ["pysuezV2==2.0.5"]
11+
"requirements": ["pysuezV2==2.0.7"]
1212
}

requirements_all.txt

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

requirements_test_all.txt

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/components/suez_water/conftest.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,5 +87,7 @@ def mock_suez_client(recorder_mock: Recorder) -> Generator[AsyncMock]:
8787
)
8888

8989
suez_client.fetch_aggregated_data.return_value = result
90-
suez_client.get_price.return_value = PriceResult("4.74")
90+
suez_client.get_price.return_value = PriceResult(
91+
"OK", {"price": 4.74}, "Price is 4.74"
92+
)
9193
yield suez_client

0 commit comments

Comments
 (0)