Squelch an RSpec warning on an integration test

This commit is contained in:
Michael Herold 2017-02-22 06:42:06 -06:00
parent c08abac9a7
commit de7c56a8c8
No known key found for this signature in database
GPG Key ID: 0325A44E1EA06F99
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ RSpec.describe 'partial-rails' do
end
it 'does not raise an exception when we require hashie' do
expect { require 'hashie' }.not_to raise_exception(LoadError)
expect { require 'hashie' }.not_to raise_error
end
end
end