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:
authorJarka Kadlecova <jarka@gitlab.com>2017-09-27 09:30:40 +0300
committerJarka Kadlecova <jarka@gitlab.com>2017-09-27 09:30:40 +0300
commiteb0c7092869ac2eb0782f60d6935f0dc3fe33501 (patch)
treea157b6929f178af61eb033cacee23f029bad269a /spec/features/issuables
parentcca510028ab9253c3768e06b9ad6c4c5e3905c5d (diff)
fix code style
Diffstat (limited to 'spec/features/issuables')
-rw-r--r--spec/features/issuables/discussion_lock_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/features/issuables/discussion_lock_spec.rb b/spec/features/issuables/discussion_lock_spec.rb
index 1c54293de93..7ea29ff252b 100644
--- a/spec/features/issuables/discussion_lock_spec.rb
+++ b/spec/features/issuables/discussion_lock_spec.rb
@@ -97,8 +97,8 @@ describe 'Discussion Lock', :js do
it 'the user can not create a comment' do
page.within('#notes') do
expect(page).not_to have_selector('js-main-target-form')
- expect(page.find('.disabled-comment')).
- to have_content('This issue is locked. Only project members can comment.')
+ expect(page.find('.disabled-comment'))
+ .to have_content('This issue is locked. Only project members can comment.')
end
end
end