mirror of
https://github.com/beetbox/beets.git
synced 2026-01-09 09:22:55 +01:00
Remove hardcoded ordering of filters in tests
This commit is contained in:
parent
237792a4fb
commit
2cda2b5b3a
1 changed files with 4 additions and 4 deletions
|
|
@ -122,10 +122,10 @@ class SpotifyPluginTest(_common.TestCase, TestHelper):
|
|||
self.spotify._output_results(results)
|
||||
|
||||
params = _params(responses.calls[0].request.url)
|
||||
self.assertEqual(
|
||||
params['q'],
|
||||
[u'Happy artist:Pharrell Williams album:Despicable Me 2'],
|
||||
)
|
||||
query = params['q']
|
||||
self.assertIn(u'Happy', query)
|
||||
self.assertIn(u'artist:Pharrell Williams', query)
|
||||
self.assertIn(u'album:Despicable Me 2', query)
|
||||
self.assertEqual(params['type'], [u'track'])
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue