diff --git a/libraries/provider_spotify_app_debian.rb b/libraries/provider_spotify_app_debian.rb index 9ec17cf..c4d2972 100644 --- a/libraries/provider_spotify_app_debian.rb +++ b/libraries/provider_spotify_app_debian.rb @@ -75,7 +75,7 @@ def add_repo apt_repository 'spotify' do uri 'http://repository.spotify.com' components %w(stable non-free) - key '94558F59' + key 'D2C19886' keyserver 'keyserver.ubuntu.com' action :add end diff --git a/spec/libraries/provider_spotify_app_debian_spec.rb b/spec/libraries/provider_spotify_app_debian_spec.rb index 354256d..313c8ef 100644 --- a/spec/libraries/provider_spotify_app_debian_spec.rb +++ b/spec/libraries/provider_spotify_app_debian_spec.rb @@ -55,7 +55,7 @@ expect(p).to receive(:apt_repository).with('spotify').and_yield expect(p).to receive(:uri).with('http://repository.spotify.com') expect(p).to receive(:components).with(%w(stable non-free)) - expect(p).to receive(:key).with('94558F59') + expect(p).to receive(:key).with('D2C19886') expect(p).to receive(:keyserver).with('keyserver.ubuntu.com') expect(p).to receive(:action).with(:add) p.send(:add_repo)