Skip to content

Commit 70b23e5

Browse files
committed
test
1 parent 7134740 commit 70b23e5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lisa/schema.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -891,7 +891,8 @@ class VirtualizationSettings(FeatureSettings):
891891
)
892892

893893
def __eq__(self, o: object) -> bool:
894-
assert isinstance(o, VirtualizationSettings), f"actual: {type(o)}"
894+
if not isinstance(o, VirtualizationSettings):
895+
return False
895896
return super().__eq__(o) and self.host_type == o.host_type
896897

897898
def __hash__(self) -> int:

0 commit comments

Comments
 (0)