Description: Remove references to non-DFSG-compatible resources
 We remove eep.wav during repacking due to unknown provenance, and
 update the relevant test to expect one fewer resource copy
Author: Nick Morrott <knowledgejunkie@gmail.com>
Forwarded: not-needed
Last-Update: 2019-01-16
---
--- a/mu/logic.py
+++ b/mu/logic.py
@@ -599,8 +599,6 @@
         if not os.path.exists(sounds_path):
             logger.debug('Creating directory: {}'.format(sounds_path))
             os.makedirs(sounds_path)
-            shutil.copy(path('eep.wav', 'pygamezero/'),
-                        os.path.join(sounds_path, 'eep.wav'))
         if not os.path.exists(music_path):
             logger.debug('Creating directory: {}'.format(music_path))
             os.makedirs(music_path)
--- a/tests/test_logic.py
+++ b/tests/test_logic.py
@@ -660,7 +660,7 @@
         e.setup(mock_modes)
         assert mkd.call_count == 5
         assert mkd.call_args_list[0][0][0] == 'foo'
-        assert mock_shutil.call_count == 3
+        assert mock_shutil.call_count == 2
     assert e.modes == mock_modes
     view.set_usb_checker.assert_called_once_with(1, e.check_usb)
 
