Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValery Sizov <vsv2711@gmail.com>2015-12-25 16:46:01 +0300
committerValery Sizov <vsv2711@gmail.com>2015-12-25 16:46:01 +0300
commitc79ffa01b49128c609099b7048649082b5e327fb (patch)
tree982cf198b84b46d4644500eb4c5cb0dab1139cdb /spec/helpers/issues_helper_spec.rb
parent5605e1591401796c19c91967976c98ad1ae32015 (diff)
satisfy rubocop
Diffstat (limited to 'spec/helpers/issues_helper_spec.rb')
-rw-r--r--spec/helpers/issues_helper_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/helpers/issues_helper_spec.rb b/spec/helpers/issues_helper_spec.rb
index 68df460da2d..ffd8ebae029 100644
--- a/spec/helpers/issues_helper_spec.rb
+++ b/spec/helpers/issues_helper_spec.rb
@@ -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