From 8085d1318bcbbd867d951cc23866c35822559325 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Tue, 20 Jun 2017 16:19:31 -0400 Subject: [PATCH] Fix ipfs test to sort items in order --- test/test_ipfs.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test_ipfs.py b/test/test_ipfs.py index 9c523d6e5..d670bfc25 100644 --- a/test/test_ipfs.py +++ b/test/test_ipfs.py @@ -67,17 +67,17 @@ class IPFSPluginTest(unittest.TestCase, TestHelper): def mk_test_album(self): items = [_common.item() for _ in range(3)] items[0].title = 'foo bar' - items[0].artist = 'one' + items[0].artist = '1one' items[0].album = 'baz' items[0].year = 2001 items[0].comp = True items[1].title = 'baz qux' - items[1].artist = 'two' + items[1].artist = '2two' items[1].album = 'baz' items[1].year = 2002 items[1].comp = True items[2].title = 'beets 4 eva' - items[2].artist = 'three' + items[2].artist = '3three' items[2].album = 'foo' items[2].year = 2003 items[2].comp = False