Skip to content

Commit

Permalink
Remove audio interface import
Browse files Browse the repository at this point in the history
  • Loading branch information
qcapen committed Jun 14, 2016
1 parent 625383b commit 5bcf309
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions mpfmc/tests/test_Audio.py
@@ -1,7 +1,6 @@
import logging
from mpfmc.tests.MpfMcTestCase import MpfMcTestCase
from mock import MagicMock
from mpfmc.core.audio.audio_interface import AudioException


class TestAudio(MpfMcTestCase):
Expand Down Expand Up @@ -98,7 +97,7 @@ def test_typical_sound_system(self):

# Test bad sound file
self.assertIn('bad_sound_file', self.mc.sounds)
with self.assertRaises(AudioException):
with self.assertRaises(Exception):
self.mc.sounds['bad_sound_file'].do_load()
self.assertFalse(self.mc.sounds['bad_sound_file'].loaded)

Expand Down

0 comments on commit 5bcf309

Please sign in to comment.