From 12cbb8bdb7dfe735ece32574039f4fc206dff545 Mon Sep 17 00:00:00 2001 From: Todd Zullinger Date: Tue, 8 Jul 2008 21:00:50 -0400 Subject: Add a quiet parameter to Database.remove() and use it in the test suite --- bindings/python/tests/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bindings/python/tests') diff --git a/bindings/python/tests/tests.py b/bindings/python/tests/tests.py index f52015e..9f41617 100644 --- a/bindings/python/tests/tests.py +++ b/bindings/python/tests/tests.py @@ -62,7 +62,7 @@ class TestiPodFunctions(unittest.TestCase): track = self.db[0] track_file = track.ipod_filename() self.assertEqual(len(self.db),n) - self.db.remove(track, ipod=True) + self.db.remove(track, ipod=True, quiet=True) self.failIf(os.path.exists(track_file)) def testDatestampSetting(self): -- cgit