Skip to content

Commit e7e1e65

Browse files
committed
Update impacted test-cases
1 parent b320739 commit e7e1e65

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

tests/test_smile.py

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3726,6 +3726,7 @@ async def test_connect_anna_heatpump_heating(self):
37263726
},
37273727
"sensors": {
37283728
"water_temperature": 29.1,
3729+
"domestic_hot_water_setpoint": 60.0,
37293730
"dhw_temperature": 46.3,
37303731
"intended_boiler_temperature": 35.0,
37313732
"modulation_level": 52,
@@ -3791,7 +3792,7 @@ async def test_connect_anna_heatpump_heating(self):
37913792

37923793
await self.device_test(smile, testdata)
37933794
assert smile.gateway_id == "015ae9ea3f964e668e490fa39da3870b"
3794-
assert self.device_items == 56
3795+
assert self.device_items == 57
37953796
assert not self.cooling_present
37963797
assert not self.notifications
37973798

@@ -3854,6 +3855,7 @@ async def test_connect_anna_heatpump_cooling(self):
38543855
},
38553856
"sensors": {
38563857
"water_temperature": 24.7,
3858+
"domestic_hot_water_setpoint": 60.0,
38573859
"intended_boiler_temperature": 0.0,
38583860
"modulation_level": 40,
38593861
"return_temperature": 23.8,
@@ -3907,7 +3909,7 @@ async def test_connect_anna_heatpump_cooling(self):
39073909
assert not smile._smile_legacy
39083910

39093911
await self.device_test(smile, testdata)
3910-
assert self.device_items == 58
3912+
assert self.device_items == 59
39113913
assert self.cooling_present
39123914
assert not self.notifications
39133915

@@ -3966,7 +3968,7 @@ async def test_connect_anna_heatpump_cooling_fake_firmware(self):
39663968
assert smile.smile_version[0] == "4.10.10"
39673969

39683970
await self.device_test(smile, testdata)
3969-
assert self.device_items == 59
3971+
assert self.device_items == 60
39703972
assert smile._cooling_present
39713973
assert smile._cooling_enabled
39723974
assert smile._cooling_active
@@ -4067,6 +4069,7 @@ async def test_connect_anna_elga_2(self):
40674069
},
40684070
"sensors": {
40694071
"water_temperature": 22.8,
4072+
"domestic_hot_water_setpoint": 60.0,
40704073
"intended_boiler_temperature": 0.0,
40714074
"modulation_level": 0.0,
40724075
"return_temperature": 23.4,
@@ -4102,7 +4105,7 @@ async def test_connect_anna_elga_2(self):
41024105
assert not smile._smile_legacy
41034106

41044107
await self.device_test(smile, testdata)
4105-
assert self.device_items == 57
4108+
assert self.device_items == 58
41064109
assert smile.gateway_id == "fb49af122f6e4b0f91267e1cf7666d6f"
41074110
assert self.cooling_present
41084111
assert not self.notifications
@@ -4154,7 +4157,7 @@ async def test_connect_anna_elga_2_schedule_off(self):
41544157

41554158
await self.device_test(smile, testdata)
41564159
assert smile._cooling_present
4157-
assert self.device_items == 57
4160+
assert self.device_items == 58
41584161

41594162
await smile.close_connection()
41604163
await self.disconnect(server, client)
@@ -4221,6 +4224,7 @@ async def test_connect_anna_elga_2_cooling(self):
42214224
},
42224225
"sensors": {
42234226
"water_temperature": 22.8,
4227+
"domestic_hot_water_setpoint": 60.0,
42244228
"intended_boiler_temperature": 0.0,
42254229
"modulation_level": 0.0,
42264230
"return_temperature": 23.4,
@@ -4256,7 +4260,7 @@ async def test_connect_anna_elga_2_cooling(self):
42564260
assert not smile._smile_legacy
42574261

42584262
await self.device_test(smile, testdata)
4259-
assert self.device_items == 58
4263+
assert self.device_items == 59
42604264
assert self.cooling_present
42614265
assert not self.notifications
42624266

0 commit comments

Comments
 (0)