From 0ba2c14c80d254c8037efa5e01a8bf295ca9609b Mon Sep 17 00:00:00 2001 From: DanielXMoore Date: Sun, 7 Apr 2013 18:53:14 -0400 Subject: [PATCH] movable velocity and acceleration getters --- test/movable.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/movable.coffee b/test/movable.coffee index 34e5e87d..1acc25c0 100644 --- a/test/movable.coffee +++ b/test/movable.coffee @@ -37,8 +37,8 @@ test "should increase velocity according to acceleration", -> velocity: Point(7, 4) acceleration: Point(1, -0.3) - 100.times -> - particle.update(4) + 60.times -> + particle.update(4) equals particle.I.velocity.x, 11 equals particle.I.velocity.y, 2.8