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 e4343fc commit 571d51dCopy full SHA for 571d51d
changehc/tests/test_update_sensor.py
@@ -268,7 +268,6 @@ def test_handle_wip_signal(self):
268
assert signal_names[0].startswith("wip_")
269
assert all(not s.startswith("wip_") for s in signal_names[1:])
270
# Test wip_signal = False (only unpublished signals should receive prefix)
271
- # No CHC signal is published now, so both should get prefix
272
signal_names = add_prefix(["xyzzy", SIGNALS[0]], False)
273
274
- assert all(s.startswith("wip_") for s in signal_names[1:])
+ assert all(not s.startswith("wip_") for s in signal_names[1:])
0 commit comments