satisfy rubocop

This commit is contained in:
Valery Sizov 2015-12-25 15:46:01 +02:00
parent 5605e15914
commit c79ffa01b4
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ describe IssuesHelper do
describe "#awards_sort" do
it "sorts a hash so thumbsup and thumbsdown are always on top" do
data = {"thumbsdown" => "some value", "lifter" => "some value", "thumbsup" => "some value"}
data = { "thumbsdown" => "some value", "lifter" => "some value", "thumbsup" => "some value" }
expect(awards_sort(data).keys).to eq(["thumbsup", "thumbsdown", "lifter"])
end
end