From e124bdb052109b1b0e73ae51f55df32f52dbcf9c Mon Sep 17 00:00:00 2001 From: John Glover Date: Fri, 6 Jul 2012 14:51:29 +0100 Subject: [tests] Remove unnecessary code from test_synthesis. --- tests/test_synthesis.py | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'tests') diff --git a/tests/test_synthesis.py b/tests/test_synthesis.py index 9a81c8e..2e620ea 100644 --- a/tests/test_synthesis.py +++ b/tests/test_synthesis.py @@ -1,6 +1,4 @@ import os -import json -import numpy as np from nose.tools import assert_almost_equals import simpl import simpl.peak_detection as peak_detection @@ -17,9 +15,6 @@ num_samples = num_frames * hop_size audio_path = os.path.join( os.path.dirname(__file__), 'audio/flute.wav' ) -libsms_test_data_path = os.path.join( - os.path.dirname(__file__), 'libsms_test_data.json' -) libsms_harmonic_synthesis_ifft_path = os.path.join( os.path.dirname(__file__), 'libsms_harmonic_synthesis_ifft.wav' ) @@ -35,13 +30,6 @@ Synthesis = synthesis.Synthesis SMSSynthesis = synthesis.SMSSynthesis -def _load_libsms_test_data(): - test_data = None - with open(libsms_test_data_path, 'r') as f: - test_data = json.loads(f.read()) - return test_data - - class TestSynthesis(object): @classmethod def setup_class(cls): @@ -69,7 +57,6 @@ class TestSMSSynthesis(object): def setup_class(cls): cls.audio = simpl.read_wav(audio_path)[0] cls.audio = cls.audio[0:num_samples] - cls.test_data = _load_libsms_test_data() def test_basic(self): pd = SMSPeakDetection() -- cgit v1.2.3