Skip to content
Snippets Groups Projects
Commit 8ba1f9ef authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Fix kernel.domains comparison

parent 59e2b821
No related branches found
No related tags found
No related merge requests found
......@@ -1206,6 +1206,9 @@ class LoopKernel(RecordWithoutPickling):
for field_name in self.comparison_fields:
if field_name == "domains":
if len(self.domains) != len(other.domains):
return False
for set_a, set_b in zip(self.domains, other.domains):
if not set_a.plain_is_equal(set_b):
return False
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment