link and flake cleanup

This commit is contained in:
2026-02-08 16:05:03 -05:00
parent 087a264e97
commit 5e6dfc75ad
24 changed files with 393 additions and 186 deletions
+4 -4
View File
@@ -3,12 +3,12 @@ from hbd.proto import dicttos
def test_parse_message_uncompressed():
raw = dicttos('HTB', {'name': 'host', 'interval': 1})
raw = dicttos("HTB", {"name": "host", "interval": 1})
m = parse_message(raw)
assert m['ID'].startswith('HTB')
assert m["ID"].startswith("HTB")
def test_parse_message_compressed():
raw = dicttos('ACK', {'time': 1}, compress=True)
raw = dicttos("ACK", {"time": 1}, compress=True)
m = parse_message(raw)
assert 'ID' in m
assert "ID" in m