Fix test again

This commit is contained in:
apple502j 2020-06-29 17:45:59 +09:00 committed by GitHub
parent 85fc3557ac
commit f532499ba3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -291,7 +291,7 @@ test('isTouchingObjectOutsideStage', t => {
x: 1000,
y: -300
});
t.equals(a.isTouchingObject('__mouse__'), false);
t.equals(a.isTouchingObject('_mouse_'), false);
t.end();
});
@ -309,7 +309,7 @@ test('isTouchingMouse', t => {
x: 240,
y: 180
});
t.equals(a.isTouchingObject('__mouse__'), true);
t.equals(a.isTouchingObject('_mouse_'), true);
t.end();
});