Delete test, the method being tested no longer exists.

This commit is contained in:
Ebag333
2017-02-26 08:52:27 -08:00
parent e4d0f2dc6f
commit 7eb193cbbb

View File

@@ -1,12 +0,0 @@
from eos.mathUtils import floorFloat
def test_floorFloat():
assert type(floorFloat(1)) is not float
assert type(floorFloat(1)) is int
assert type(floorFloat(1.1)) is not float
assert type(floorFloat(1.1)) is int
assert floorFloat(1.1) == 1
assert floorFloat(1.9) == 1
assert floorFloat(1.5) == 1
assert floorFloat(-1.5) == -2