Skip to content

Commit

Permalink
Update to new APT repo key
Browse files Browse the repository at this point in the history
  • Loading branch information
hartmantis committed Jul 17, 2015
1 parent 9ce21f0 commit a95591d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libraries/provider_spotify_app_debian.rb
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion spec/libraries/provider_spotify_app_debian_spec.rb
Expand Up @@ -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)
Expand Down

0 comments on commit a95591d

Please sign in to comment.