Skip to content

Commit

Permalink
Ran rubocop
Browse files Browse the repository at this point in the history
  • Loading branch information
jvanderen1 committed Nov 14, 2024
1 parent 28f6dc3 commit 0123483
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/commands/hset_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
end

it 'stores array values correctly' do
@redises.hset(@key, ['k1', 'v1', 'k2', 'v2'])
@redises.hset(@key, %w[k1 v1 k2 v2])
expect(@redises.hget(@key, 'k1')).to eq('v1')
expect(@redises.hget(@key, 'k2')).to eq('v2')
end
Expand Down

0 comments on commit 0123483

Please sign in to comment.