We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 836ec28 commit 5587d0bCopy full SHA for 5587d0b
tests/test_smile.py
@@ -4616,13 +4616,15 @@ async def test_connect_anna_loria_heating_idle(self):
4616
)
4617
assert switch_change
4618
4619
- await self.tinker_thermostat(
+ with pytest.raises(pw_exceptions.PlugwiseError) as exc:
4620
+ await self.tinker_thermostat(
4621
smile,
4622
"15da035090b847e7a21f93e08c015ebc",
4623
good_schedules=[
4624
"Winter",
4625
],
4626
4627
+ _LOGGER.debug("ERROR raised: %s", exc.value)
4628
4629
with pytest.raises(pw_exceptions.PlugwiseError) as exc:
4630
await self.tinker_thermostat_temp(
0 commit comments