mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-07-03 17:50:28 -04:00
Fix test again
This commit is contained in:
parent
85fc3557ac
commit
f532499ba3
1 changed files with 2 additions and 2 deletions
|
@ -291,7 +291,7 @@ test('isTouchingObjectOutsideStage', t => {
|
||||||
x: 1000,
|
x: 1000,
|
||||||
y: -300
|
y: -300
|
||||||
});
|
});
|
||||||
t.equals(a.isTouchingObject('__mouse__'), false);
|
t.equals(a.isTouchingObject('_mouse_'), false);
|
||||||
t.end();
|
t.end();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -309,7 +309,7 @@ test('isTouchingMouse', t => {
|
||||||
x: 240,
|
x: 240,
|
||||||
y: 180
|
y: 180
|
||||||
});
|
});
|
||||||
t.equals(a.isTouchingObject('__mouse__'), true);
|
t.equals(a.isTouchingObject('_mouse_'), true);
|
||||||
t.end();
|
t.end();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue