From 42f54e36bdd86dddc75cd7e02b3372778d4f6b1c Mon Sep 17 00:00:00 2001 From: Thomas Scholtes Date: Sun, 26 Jan 2014 00:17:00 +0100 Subject: [PATCH] These tests are already in ImportNonAutotaggedTest --- test/test_importer.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/test/test_importer.py b/test/test_importer.py index 08aa36e42..94a87ffed 100644 --- a/test/test_importer.py +++ b/test/test_importer.py @@ -258,16 +258,6 @@ class ImportApplyTest(_common.TestCase, ImportHelper): albumtype = 'soundtrack', ) - def test_finalize_no_delete(self): - config['import']['delete'] = False - _call_stages(self.session, [self.i], self.info) - self.assertExists(self.srcpath) - - def test_finalize_with_delete(self): - config['import']['delete'] = True - _call_stages(self.session, [self.i], self.info) - self.assertNotExists(self.srcpath) - def test_apply_asis_uses_album_path(self): _call_stages(self.session, [self.i], importer.action.ASIS) self.assert_file_in_lib( 'The Artist', 'The Album', 'Song.mp3')