Test actual correct value, not the wrong value that was being generated by old hacky method.

This commit is contained in:
Ebag333
2017-02-21 07:43:04 -08:00
parent 565a78610e
commit a07e1d8f3a

View File

@@ -9,4 +9,4 @@ def test_floorFloat():
assert floorFloat(1.1) == 1
assert floorFloat(1.9) == 1
assert floorFloat(1.5) == 1
assert floorFloat(-1.5) == -1
assert floorFloat(-1.5) == -2