summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTanya Pazitny <tpazitny@gitlab.com>2019-07-26 15:02:29 -0700
committerTanya Pazitny <tpazitny@gitlab.com>2019-07-26 15:02:29 -0700
commitd0236453de8614c60f2f64a237966cad2f242f7e (patch)
tree4ef919011643e4077c47e6b68c80c5f838bba4f8
parent2219b140b6873b893a3cac2cae195b929a20f5aa (diff)
downloadgitlab-ce-d0236453de8614c60f2f64a237966cad2f242f7e.tar.gz
Change qa-* class references to rspec-*tp-qtt182-7
-rw-r--r--app/views/shared/form_elements/_description.html.haml2
-rw-r--r--spec/features/issues/user_creates_issue_spec.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/shared/form_elements/_description.html.haml b/app/views/shared/form_elements/_description.html.haml
index b11cb8a3076..be78fd0ccfb 100644
--- a/app/views/shared/form_elements/_description.html.haml
+++ b/app/views/shared/form_elements/_description.html.haml
@@ -15,7 +15,7 @@
= render layout: 'projects/md_preview', locals: { url: preview_url, referenced_users: true } do
= render 'projects/zen', f: form, attr: :description,
- classes: 'note-textarea qa-issuable-form-description',
+ classes: 'note-textarea qa-issuable-form-description rspec-issuable-form-description',
placeholder: "Write a comment or drag your files hereā€¦",
supports_quick_actions: supports_quick_actions
= render 'shared/notes/hints', supports_quick_actions: supports_quick_actions
diff --git a/spec/features/issues/user_creates_issue_spec.rb b/spec/features/issues/user_creates_issue_spec.rb
index 2789d574156..a71395c0e47 100644
--- a/spec/features/issues/user_creates_issue_spec.rb
+++ b/spec/features/issues/user_creates_issue_spec.rb
@@ -28,7 +28,7 @@ describe "User creates issue" do
fill_in("Title", with: issue_title)
first('.js-md').click
- first('.qa-issuable-form-description').native.send_keys('Description')
+ first('.rspec-issuable-form-description').native.send_keys('Description')
click_button("Submit issue")