diff options
author | Arun Kumar Mohan <arunmohandm@gmail.com> | 2019-08-28 02:16:29 -0500 |
---|---|---|
committer | Arun Kumar Mohan <arunmohandm@gmail.com> | 2019-08-28 02:42:05 -0500 |
commit | 65272b9e546308b999156a48801acb4b577d4f98 (patch) | |
tree | 9754b51d7a7e7592c53ed7fe191383c7c36f49d8 /spec/views/groups | |
parent | c7d12e602120bc0ec801b9696c7ac344dda10fc4 (diff) | |
download | gitlab-ce-65272b9e546308b999156a48801acb4b577d4f98.tar.gz |
Remove unnecessary CSS class
Diffstat (limited to 'spec/views/groups')
-rw-r--r-- | spec/views/groups/edit.html.haml_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/views/groups/edit.html.haml_spec.rb b/spec/views/groups/edit.html.haml_spec.rb index 47804411b9d..0da3470433c 100644 --- a/spec/views/groups/edit.html.haml_spec.rb +++ b/spec/views/groups/edit.html.haml_spec.rb @@ -23,7 +23,7 @@ describe 'groups/edit.html.haml' do render expect(rendered).to have_content("Prevent sharing a project within #{test_group.name} with other groups") - expect(rendered).to have_css('.descr', text: 'help text here') + expect(rendered).to have_css('.js-descr', text: 'help text here') expect(rendered).to have_field('group_share_with_group_lock', checkbox_options) end end |