Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/system/framework/utils/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def __eq__(self, o: object) -> bool:
if len(o) != 2 or not isinstance(o[0], int) or not isinstance(o[1], str):
raise NotImplementedError(f"Unable to compare {type(o)} with {self.__class__}")

(id, name) = o
id, name = o
return id == self.id and name == self.name
elif isinstance(o, UnixObject):
# Fallback to identity comparison
Expand Down
Loading