summaryrefslogtreecommitdiff
path: root/test/test_function.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_function.py')
-rw-r--r--test/test_function.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/test_function.py b/test/test_function.py
index ed70180..c856d76 100644
--- a/test/test_function.py
+++ b/test/test_function.py
@@ -100,9 +100,6 @@ def test_pwl():
avrg_expected = (1.25 - 0.45 + 0.75 + 1.5*0.5) / 4.0
assert_almost_equal(f.avrg(), avrg_expected, decimal=16)
- abs_avrg_expected = (1.25 + 0.45 + 0.75 + 1.5*0.5) / 4.0
- assert_almost_equal(f.abs_avrg(), abs_avrg_expected, decimal=16)
-
def test_pwl_add():
x = [0.0, 1.0, 2.0, 2.5, 4.0]