cleanup(squish): remove redundant definition of `mouse_over_object` api

Probably a mistake. This was defined twice in our package.
This commit is contained in:
Pascal Precht 2022-11-16 15:19:06 +01:00 committed by r4bbit.eth
parent dbf7fa4aab
commit d536634fee
1 changed files with 0 additions and 9 deletions

View File

@ -286,15 +286,6 @@ def _find_link(objName: str, link: str):
return [-1, -1]
def move_mouse_over_object(obj):
# Start moving the cursor:
end_x = obj.x + (obj.width / 2)
y = round(int(obj.height) / 2)
x = 0
while x < end_x:
squish.mouseMove(obj, x, y)
x += 10
def expect_true(assertionValue: bool, message: str):
return test.verify(assertionValue, message)