diff options
author | ash <smashwilson@gmail.com> | 2013-05-18 19:13:24 +0000 |
---|---|---|
committer | ash <smashwilson@gmail.com> | 2013-05-18 19:13:24 +0000 |
commit | ceb23a6230850f26a8c3eb2282ae25af6aa23665 (patch) | |
tree | 003234405819dc12c258c1c65aaa895234bc4380 /spec/gitlab_keys_spec.rb | |
parent | 7626d9575e5f95fcf127a0fc5fcaa4fde2585547 (diff) | |
download | gitlab-shell-ceb23a6230850f26a8c3eb2282ae25af6aa23665.tar.gz |
Use :warn instead of :error for invalid commands.
Diffstat (limited to 'spec/gitlab_keys_spec.rb')
-rw-r--r-- | spec/gitlab_keys_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/gitlab_keys_spec.rb b/spec/gitlab_keys_spec.rb index 67bc122..09f5872 100644 --- a/spec/gitlab_keys_spec.rb +++ b/spec/gitlab_keys_spec.rb @@ -63,10 +63,10 @@ describe GitlabKeys do gitlab_keys.exec end - it 'should log an error on unknown commands' do + it 'should log a warning on unknown commands' do gitlab_keys = build_gitlab_keys('nooope') gitlab_keys.stub(puts: nil) - $logger.should_receive(:error).with('Attempt to execute invalid gitlab-keys command "nooope".') + $logger.should_receive(:warn).with('Attempt to execute invalid gitlab-keys command "nooope".') gitlab_keys.exec end end |