mirror of
https://github.com/beetbox/beets.git
synced 2026-01-09 01:15:38 +01:00
again ignoring unused return values
This commit is contained in:
parent
f46cc7d131
commit
a9a49c6846
1 changed files with 2 additions and 2 deletions
|
|
@ -71,7 +71,7 @@ class QueryTest(_common.TestCase):
|
|||
|
||||
def test_query_album(self):
|
||||
item, itempath = self.add_item()
|
||||
album = self.add_album([item])
|
||||
self.add_album([item])
|
||||
items, albums = commands._do_query(self.lib, (), True)
|
||||
self.assertEqual(len(items), 1)
|
||||
self.assertEqual(len(albums), 1)
|
||||
|
|
@ -82,7 +82,7 @@ class QueryTest(_common.TestCase):
|
|||
|
||||
item, itempath = self.add_item()
|
||||
item2, itempath = self.add_item()
|
||||
self.album = self.add_album([item, item2])
|
||||
self.add_album([item, item2])
|
||||
items, albums = commands._do_query(self.lib, (), True)
|
||||
self.assertEqual(len(items), 3)
|
||||
self.assertEqual(len(albums), 2)
|
||||
|
|
|
|||
Loading…
Reference in a new issue