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:
authorJB Vasseur <jvasseur@gmail.com>2018-10-18 04:08:23 +0300
committerJB Vasseur <jvasseur@gmail.com>2018-10-18 04:08:23 +0300
commitfbd372114de4930e94266fbfee2268643e72930f (patch)
tree077621904c8179c34ce2b7c9e9537cf1f93de2cf /spec/finders/applications_finder_spec.rb
parent6da97336522dfba8a02485f765be433ec4f4781a (diff)
Code styling
Diffstat (limited to 'spec/finders/applications_finder_spec.rb')
-rw-r--r--spec/finders/applications_finder_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/finders/applications_finder_spec.rb b/spec/finders/applications_finder_spec.rb
index a75eb9c9ca5..14d6b35cc27 100644
--- a/spec/finders/applications_finder_spec.rb
+++ b/spec/finders/applications_finder_spec.rb
@@ -10,7 +10,7 @@ describe ApplicationsFinder do
it 'returns an array of applications' do
found = described_class.new.execute
- expect(found).to match_array([application1,application2])
+ expect(found).to match_array([application1, application2])
end
it 'returns the application by id' do
params = { id: application1.id }