UT: Use set.intersection() for simpler set comparison
This commit is contained in:
parent
617a3273cd
commit
1a8c285d8e
|
@ -42,9 +42,9 @@ def test_serialization():
|
||||||
assert len(serialized_node["connections"]) == len(node_dict["connections"])
|
assert len(serialized_node["connections"]) == len(node_dict["connections"])
|
||||||
|
|
||||||
for key, value in serialized_node["connections"].items():
|
for key, value in serialized_node["connections"].items():
|
||||||
assert len(value) == len(node_dict["connections"][key])
|
set_a = set(value)
|
||||||
for comm_type in value:
|
set_b = node_dict["connections"][key]
|
||||||
assert comm_type in node_dict["connections"][key]
|
len(set_a.intersection(set_b)) == len(set_a) == len(set_b) == len(value)
|
||||||
|
|
||||||
|
|
||||||
def test_machine_id_immutable():
|
def test_machine_id_immutable():
|
||||||
|
|
Loading…
Reference in New Issue