diff --git a/tests/test_modules/eos/test_mathUtils.py b/tests/test_modules/eos/test_mathUtils.py deleted file mode 100644 index c5cf2b0bb..000000000 --- a/tests/test_modules/eos/test_mathUtils.py +++ /dev/null @@ -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