diff options
| author | Todd Zullinger <tmz@pobox.com> | 2008-08-23 18:01:32 +0000 |
|---|---|---|
| committer | Todd Zullinger <tmz@pobox.com> | 2008-08-23 18:01:32 +0000 |
| commit | 27e708ef6565c6f5427a00e39e90f7e59aba2a3e (patch) | |
| tree | 18cd9ad6a26f869bf54b6e86b6f6aab5d6017d58 /bindings/python/tests | |
| parent | 6c851f6823d456e20c4d1a39203373a23b45a88b (diff) | |
| download | libgpod-27e708ef6565c6f5427a00e39e90f7e59aba2a3e.tar.gz libgpod-27e708ef6565c6f5427a00e39e90f7e59aba2a3e.tar.xz libgpod-27e708ef6565c6f5427a00e39e90f7e59aba2a3e.zip | |
Python: Add a quiet parameter to Database.remove() and use it in tests
git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@2109 f01d2545-417e-4e96-918e-98f8d0dbbcb6
Diffstat (limited to 'bindings/python/tests')
| -rw-r--r-- | bindings/python/tests/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/python/tests/tests.py b/bindings/python/tests/tests.py index 6efb114..657e7f5 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): |
