enhancements

This commit is contained in:
Romain Bignon 2010-08-14 00:21:48 +02:00
commit 87f3e1e765
3 changed files with 5 additions and 5 deletions

View file

@ -25,5 +25,5 @@ class BNPorcTest(BackendTest):
l = [a for a in self.backend.iter_accounts()]
if len(l) > 0:
a = l[0]
o = self.backend.iter_operations(a)
h = self.backend.iter_history(a)
self.backend.iter_operations(a)
self.backend.iter_history(a)

View file

@ -23,4 +23,4 @@ class GazelleTest(BackendTest):
def test_torrent(self):
l = [torrent for torrent in self.backend.iter_torrents('sex')]
if len(l) > 0:
f = self.backend.get_torrent_file(l[0].id)
self.backend.get_torrent_file(l[0].id)