summaryrefslogtreecommitdiff
path: root/tests/test_residual.py
diff options
context:
space:
mode:
authorJohn Glover <j@johnglover.net>2012-07-20 17:47:10 +0100
committerJohn Glover <j@johnglover.net>2012-07-20 17:47:10 +0100
commit5622cce306b73dab8da6b0fb71ef5bdbdbbc9a86 (patch)
tree5b2b9096abc2f74aa0e25d6a61535e9d772290e8 /tests/test_residual.py
parent44387fc6606057393b5026ce0d2707a016037347 (diff)
downloadsimpl-5622cce306b73dab8da6b0fb71ef5bdbdbbc9a86.tar.gz
simpl-5622cce306b73dab8da6b0fb71ef5bdbdbbc9a86.tar.bz2
simpl-5622cce306b73dab8da6b0fb71ef5bdbdbbc9a86.zip
[tests] Remove plot from test_residual. Add sndobj partial tracking test data script.
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)