spec/javascripts/src/math/point_spec.js in entityjs-0.3.2 vs spec/javascripts/src/math/point_spec.js in entityjs-0.4.0
- old
+ new
@@ -34,24 +34,24 @@
})
it('should be correct distance', function(){
e.posX = 12;
e.posY = 54;
- eq(e.distance(23,74), 23)
+ eq(e.distance(23,74)+0.5|0, 23)
})
it('should be correct distance with from', function(){
e.posX = 12;
e.posY = 54;
var o = {x:23, y:74}
- eq(e.distance(o), 23)
+ eq(e.distance(o) +0.5 | 0, 23)
o = {posX:23, posY:74}
- eq(e.distance(o), 23)
+ eq(e.distance(o)+0.5|0, 23)
})
});