From b2f4834b76de7aa694319c2f4a10d0fa5062cd2c Mon Sep 17 00:00:00 2001 From: J0J0 T Date: Fri, 4 Mar 2022 07:46:15 +0100 Subject: [PATCH] discogs: Add URI to test_parse_minimal_release data --- test/test_discogs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test_discogs.py b/test/test_discogs.py index d6825c978..c2aa7682c 100644 --- a/test/test_discogs.py +++ b/test/test_discogs.py @@ -337,6 +337,7 @@ class DGAlbumInfoTest(_common.TestCase): def test_parse_minimal_release(self): """Test parsing of a release with the minimal amount of information.""" data = {'id': 123, + 'uri': 'https://www.discogs.com/release/123456-something', 'tracklist': [self._make_track('A', '1', '01:01')], 'artists': [{'name': 'ARTIST NAME', 'id': 321, 'join': ''}], 'title': 'TITLE'}