diff --git a/test/services/google.js b/test/services/google.js index 3841294..150a517 100644 --- a/test/services/google.js +++ b/test/services/google.js @@ -5,7 +5,7 @@ describe('Google Play Music', function(){ describe('lookupId', function(){ it('should find album by ID', function* (){ const result = yield google.lookupId('Byp6lvzimyf74wxi5634ul4tgam', 'album'); - result.name.should.equal('Listen (Deluxe)'); + result.name.should.equal('Listen'); }); it('should find track by ID', function* (){ diff --git a/test/services/spotify.js b/test/services/spotify.js index f2d291c..7c59b4a 100644 --- a/test/services/spotify.js +++ b/test/services/spotify.js @@ -5,7 +5,7 @@ describe('Spotify', function(){ describe('lookupId', function(){ it('should find album by ID', function* (){ const result = yield spotify.lookupId('77UW17CZFyCaRLHdHeofZu', 'album'); - result.name.should.equal('Listen (Deluxe)'); + result.name.should.equal('Listen'); }); it('should find track by ID', function* (){