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-04-15 19:24:44 +0300
committerRobert Speicher <rspeicher@gmail.com>2015-04-15 19:24:44 +0300
commitef47ea3d39d9235c2842d1f374d0f03e56da7eeb (patch)
treeb8d38727275e556bc79a76e899b40406e707d621 /spec/features/help_pages_spec.rb
parent5f78601c8a67028f246134d325cca99952ba78b6 (diff)
Revert "Fix and improve help rendering"
This reverts commit d365004e684e98459061fcd5fbaf9bea880934a8.
Diffstat (limited to 'spec/features/help_pages_spec.rb')
-rw-r--r--spec/features/help_pages_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/features/help_pages_spec.rb b/spec/features/help_pages_spec.rb
index 28423eb8caa..41088ce8271 100644
--- a/spec/features/help_pages_spec.rb
+++ b/spec/features/help_pages_spec.rb
@@ -6,7 +6,7 @@ describe 'Help Pages', feature: true do
login_as :user
end
it 'replace the variable $your_email with the email of the user' do
- visit help_page_path(filepath: 'ssh/README', format: 'md')
+ visit help_page_path(category: 'ssh', file: 'README.md')
expect(page).to have_content("ssh-keygen -t rsa -C \"#{@user.email}\"")
end
end