summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter M. Goldstein <peter.m.goldstein@gmail.com>2014-04-06 12:45:44 -0700
committerPeter M. Goldstein <peter.m.goldstein@gmail.com>2014-04-06 12:45:44 -0700
commit147e559f0043f9c701229f0ced8eb3767ac3a34d (patch)
tree6673ef474156baadea8a55c342723149605ae6ed
parent9ecda1b80e362f310e51cf103e4e3dbc89e45b51 (diff)
downloadhashie-147e559f0043f9c701229f0ced8eb3767ac3a34d.tar.gz
Fix Rubocop violation introduced by transpec
-rw-r--r--spec/hashie/mash_spec.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/spec/hashie/mash_spec.rb b/spec/hashie/mash_spec.rb
index 1129e64..920acf4 100644
--- a/spec/hashie/mash_spec.rb
+++ b/spec/hashie/mash_spec.rb
@@ -183,9 +183,8 @@ describe Hashie::Mash do
describe 'shallow update' do
it 'shallowly Hashie::Mash Hashie::Mashes and hashes together' do
- expect(subject.shallow_update(details: {
- email: 'michael@intridea.com', city: 'Imagineton'
- })).to eql(subject)
+ expect(subject.shallow_update(details: { email: 'michael@intridea.com',
+ city: 'Imagineton' })).to eql(subject)
expect(subject.first_name).to eq 'Michael'
expect(subject.details.email).to eq 'michael@intridea.com'