summaryrefslogtreecommitdiff
path: root/tests/test_residual.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_residual.py')
-rw-r--r--tests/test_residual.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/test_residual.py b/tests/test_residual.py
index 006c77a..c80fb41 100644
--- a/tests/test_residual.py
+++ b/tests/test_residual.py
@@ -1,5 +1,4 @@
import os
-import numpy as np
from nose.tools import assert_almost_equals
import simpl
import simpl.peak_detection as peak_detection
@@ -85,11 +84,6 @@ class TestSMSResidual(object):
assert len(simpl_residual) == len(sms_residual)
- import matplotlib.pyplot as plt
- plt.plot(simpl_residual)
- plt.plot(sms_residual)
- plt.show()
-
for i in range(len(simpl_residual)):
assert_almost_equals(simpl_residual[i], sms_residual[i],
float_precision)