diff options
author | Annabel Dunstone Gray <annabel.dunstone@gmail.com> | 2017-02-13 08:36:24 -0600 |
---|---|---|
committer | Annabel Dunstone Gray <annabel.dunstone@gmail.com> | 2017-02-13 08:36:24 -0600 |
commit | 950e2986656e17948ef227985d786ee22fb92fb2 (patch) | |
tree | c8e38d75cddd7a53d8a1cd38b7bfdf59912dddfd /spec/views | |
parent | 027a4bd274d7060e35cfe225765c917d7de25b31 (diff) | |
download | gitlab-ce-950e2986656e17948ef227985d786ee22fb92fb2.tar.gz |
Change wording of MR comment boxmarkdown-slash-commands-text
Diffstat (limited to 'spec/views')
-rw-r--r-- | spec/views/projects/notes/_form.html.haml_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/views/projects/notes/_form.html.haml_spec.rb b/spec/views/projects/notes/_form.html.haml_spec.rb index b14b1ece2d0..b61f016967f 100644 --- a/spec/views/projects/notes/_form.html.haml_spec.rb +++ b/spec/views/projects/notes/_form.html.haml_spec.rb @@ -21,7 +21,7 @@ describe 'projects/notes/_form' do let(:note) { build(:"note_on_#{noteable}", project: project) } it 'says that only markdown is supported, not slash commands' do - expect(rendered).to have_content('Styling with Markdown and slash commands are supported') + expect(rendered).to have_content('Markdown and slash commands are supported') end end end @@ -30,7 +30,7 @@ describe 'projects/notes/_form' do let(:note) { build(:note_on_commit, project: project) } it 'says that only markdown is supported, not slash commands' do - expect(rendered).to have_content('Styling with Markdown is supported') + expect(rendered).to have_content('Markdown is supported') end end end |