diff options
| author | tmzullinger <tmzullinger@f01d2545-417e-4e96-918e-98f8d0dbbcb6> | 2008-08-23 18:01:32 +0000 |
|---|---|---|
| committer | tmzullinger <tmzullinger@f01d2545-417e-4e96-918e-98f8d0dbbcb6> | 2008-08-23 18:01:32 +0000 |
| commit | 9a98fc1a1b4476dd57e226cfafaa283997732752 (patch) | |
| tree | 18cd9ad6a26f869bf54b6e86b6f6aab5d6017d58 /bindings/python/tests/tests.py | |
| parent | a784f5941d57b692338782b1955f5721aaabaa7d (diff) | |
| download | libgpod-9a98fc1a1b4476dd57e226cfafaa283997732752.tar.gz libgpod-9a98fc1a1b4476dd57e226cfafaa283997732752.tar.xz libgpod-9a98fc1a1b4476dd57e226cfafaa283997732752.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/tests.py')
| -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): |
