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:
authorRobert Speicher <rspeicher@gmail.com>2015-06-25 01:43:57 +0300
committerRobert Speicher <rspeicher@gmail.com>2015-06-25 01:43:57 +0300
commit09f2bec64c40edc5a8cd172b83b1a584fb855ebf (patch)
tree69f05803511326cd6a2f8cc35882236a56c5b75c /spec/helpers
parent82a671704d02d33beef88b829e74c8bb87ea8928 (diff)
Prefix random Markdown tips with "Tip:"
Diffstat (limited to 'spec/helpers')
-rw-r--r--spec/helpers/gitlab_markdown_helper_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/helpers/gitlab_markdown_helper_spec.rb b/spec/helpers/gitlab_markdown_helper_spec.rb
index a42ccb9b501..14c8c29d008 100644
--- a/spec/helpers/gitlab_markdown_helper_spec.rb
+++ b/spec/helpers/gitlab_markdown_helper_spec.rb
@@ -137,7 +137,7 @@ describe GitlabMarkdownHelper do
describe 'random_markdown_tip' do
it 'returns a random Markdown tip' do
stub_const("#{described_class}::MARKDOWN_TIPS", ['Random tip'])
- expect(random_markdown_tip).to eq 'Random tip'
+ expect(random_markdown_tip).to eq 'Tip: Random tip'
end
end
end