From a07e1d8f3a7b1f881f6651d8a5d433ae9e151fb0 Mon Sep 17 00:00:00 2001 From: Ebag333 Date: Tue, 21 Feb 2017 07:43:04 -0800 Subject: [PATCH] Test actual correct value, not the wrong value that was being generated by old hacky method. --- tests/test_modules/eos/test_mathUtils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_modules/eos/test_mathUtils.py b/tests/test_modules/eos/test_mathUtils.py index 021bff977..c5cf2b0bb 100644 --- a/tests/test_modules/eos/test_mathUtils.py +++ b/tests/test_modules/eos/test_mathUtils.py @@ -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