Updated tests

This commit is contained in:
Manuel Cortez 2019-01-06 17:27:36 -06:00
parent 9083fc65d4
commit 0f68d2d0fc

View File

@ -10,7 +10,7 @@ class audioRecorderTestCase(unittest.TestCase):
""" Test both the presenter and interactor of the audio recorder feature. View stuff will be mocked.""" """ Test both the presenter and interactor of the audio recorder feature. View stuff will be mocked."""
@mock.patch("presenters.audioRecorder.sound_lib", esp_set=True) @mock.patch("presenters.audioRecorder.sound_lib", esp_set=True)
@mock.patch("presenters.audioRecorder.pub", esp_set=True) @mock.patch("presenters.base.pub", esp_set=True)
@mock.patch("presenters.audioRecorder.tempfile", esp_set=True) @mock.patch("presenters.audioRecorder.tempfile", esp_set=True)
@mock.patch("presenters.audioRecorder.sound", esp_set=True) @mock.patch("presenters.audioRecorder.sound", esp_set=True)
@mock.patch("presenters.audioRecorder.output", esp_set=True) @mock.patch("presenters.audioRecorder.output", esp_set=True)